Files
notifications-api/gunicorn_config.py

9 lines
224 B
Python
Raw Normal View History

2017-09-22 15:34:43 +01:00
import sys
import traceback
def worker_abort(worker):
worker.log.info("worker received ABORT")
for threadId, stack in sys._current_frames().items():
2017-09-25 16:24:35 +01:00
worker.log.error(''.join(traceback.format_stack(stack)))