daemonize
daemonize copied to clipboard
Ignored "SystemExit: 0" exception on exit
Hi, when killing an application using daemonize with e.g. pkill this following warning(?) appears since Python 3.10 I believe
Exception ignored in atexit callback: <bound method Daemonize.exit of <daemonize.Daemonize object at 0x7fa00ab1bb80>>
Traceback (most recent call last):
File "/usr/lib/python3.10/site-packages/daemonize.py", line 72, in exit
sys.exit(0)
SystemExit: 0
Is there something I can do in the application to remove this warning or something?