mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-09 06:32:11 -05:00
6 lines
219 B
Python
6 lines
219 B
Python
|
|
def worker_abort(worker):
|
||
|
|
worker.log.info("worker received ABORT")
|
||
|
|
import sys, traceback
|
||
|
|
for threadId, stack in sys._current_frames().items():
|
||
|
|
worker.log.info(''.join(traceback.format_stack(stack)))
|