gunicorn_fractal
FractalWorker
¶
Bases: UvicornWorker
Subclass of uvicorn workers, which also captures SIGABRT and handles
it within the custom_handle_abort
method.
Source code in fractal_server/gunicorn_fractal.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
|
custom_handle_abort(sig, frame)
¶
Custom version of gunicorn.workers.base.Worker.handle_abort
,
transforming SIGABRT into SIGTERM.
Source code in fractal_server/gunicorn_fractal.py
30 31 32 33 34 35 36 37 38 39 40 |
|