Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion getter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import sys
from asyncio import set_event_loop
from concurrent.futures.thread import ThreadPoolExecutor
from concurrent.futures import ThreadPoolExecutor
from pathlib import Path
from platform import python_version
from shutil import rmtree
Expand Down
9 changes: 4 additions & 5 deletions getter/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,10 @@ async def main() -> None:
try:
getter_app.run_in_loop(main())
getter_app.run()
except (KeyboardInterrupt, SystemExit):
LOG.warning("[MAIN] - Manual stop signal received.")
sys.exit(0)
except KeyboardInterrupt:
LOG.warning("[APP] Shutdown signal received.")
except Exception as err:
LOG.exception(f"[MAIN_ERROR]: {err}")
LOG.exception(f"[APP] Unhandled exception: {err}")
sys.exit(1)
finally:
LOG.warning("[MAIN] - Stopped...")
LOG.warning("[APP] Stopped.")
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "2.3.4"
"version": "2.3.5"
}
Loading