Skip to content

Commit

Permalink
feat: log task stop exception to sentry for debugging (#2872)
Browse files Browse the repository at this point in the history
  • Loading branch information
niross authored Nov 23, 2023
1 parent 173558d commit 4b3d3e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dataworkspace/dataworkspace/apps/applications/spawner.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def stop(application_instance_id):
application_instance.save(update_fields=["spawner_stopped_at"])
break
except Exception: # pylint: disable=broad-except
pass
logger.exception("Failed to describe fargate task when stopping tool")
gevent.sleep(sleep_time)
sleep_time = sleep_time * 2

Expand Down

0 comments on commit 4b3d3e2

Please sign in to comment.