Update error handling and exiting
This commit is contained in:
parent
22d2c06f60
commit
c3633450bb
1 changed files with 3 additions and 3 deletions
|
@ -172,7 +172,7 @@ class Tracker:
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
logging.info("Keyboard interrupt, exiting")
|
logging.info("Keyboard interrupt, exiting")
|
||||||
sys.exit(0)
|
exit(0)
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.exception(f"Unknown error in loop: {e}")
|
logging.exception(f"Unknown error in loop: {e}")
|
||||||
|
@ -200,9 +200,9 @@ class Tracker:
|
||||||
except sqlalchemy.exc.TimeoutError:
|
except sqlalchemy.exc.TimeoutError:
|
||||||
logging.warning("Database timeout while processing shipments")
|
logging.warning("Database timeout while processing shipments")
|
||||||
|
|
||||||
except KeyboardInterrupt:
|
except (KeyboardInterrupt, asyncio.CancelledError):
|
||||||
logging.info("Keyboard interrupt, exiting")
|
logging.info("Keyboard interrupt, exiting")
|
||||||
sys.exit(0)
|
exit(0)
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.exception(f"Unknown error in loop: {e}")
|
logging.exception(f"Unknown error in loop: {e}")
|
||||||
|
|
Loading…
Reference in a new issue