-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stuck on importing, "no such table: volumes" sqlite error #219
Comments
If possible, could you try running Kapowarr with a lower version of Python? Something like 3.10 or 3.8. If it then works, then we now where the problem lies. |
Sorry, got busy with end of year things and forgot to respond here! Changing python to 3.10 fixed the issue, thanks! |
Actually, its still happening. This time when trying to download and import "Wolverine: Origins" |
Can you do something for me? Go to the file def setup_process(log_level: int) -> Callable[[], AppContext]:
set_db_location()
setup_logging(do_rollover=False)
set_log_level(log_level)
app = Flask(__name__)
app.teardown_appcontext(close_db)
return app.app_context To this: def setup_process(log_level: int) -> Callable[[], AppContext]:
setup_logging(do_rollover=False)
set_log_level(log_level)
set_db_location()
app = Flask(__name__)
app.teardown_appcontext(close_db)
return app.app_context Save the changes. Don't restart the container, if you're using Docker. In the web-UI, go to System -> Status -> Power, and click "Restart". After the application has restarted, set the log level to DEBUG at Settings -> General -> Logging -> Log Level. Then let the error happen. Once it has happened, go to Settings -> General -> Logging, and click "Download Logs". Please share the log file that was downloaded. |
Description of the bug
Recently, some comics I've tried to download get stuck on the "Importing" status at 100%. I checked logs and saw this:
If I restart kapowarr, the comic issue gets imported, but there's a high chance that the next issue in that series gets stuck as well. The comic series I know that is causing this issue is Radiant Black 2021, but I've had it happen with other series. When the single issue gets stuck, the entire queue gets stuck.
To Reproduce
Enable downloading from GetComics and try to import Radiant Black 2021. Wait for it to finish downloading, see that it gets stuck at 100% and importing. Check logs for the sqlite error.
Expected behavior
I expect for the issue to import.
Version info
Version: v1.0.0
Python version: 3.13.0
Database version: 27
The text was updated successfully, but these errors were encountered: