fix unhandled keyboardinterrupts

master
bakatrouble 5 years ago
parent 0d44427e3c
commit aea200628d

@ -12,9 +12,9 @@ class Command(BaseCommand):
while True:
try:
check_feeds.apply_async()
sleep(10*60)
except KeyboardInterrupt:
return
except Exception as e:
sentry_sdk.capture_exception(e)
traceback.print_exc()
sleep(10*60)

Loading…
Cancel
Save