You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Starting the daemon causes the parent process to exit immediately leaving the child process detached from the terminal with all file descriptors (including 0, 1 and 2) closed. It makes the daemon unable to display any uncaught errors.
Consider using python-daemon library which takes care of spawning daemons and pid files according to the PEP 3243.
Leave stderr open in debug mode.
Create a pipe to the parent process to send errors and notify of successful start or failure.
The text was updated successfully, but these errors were encountered:
Starting the daemon causes the parent process to exit immediately leaving the child process detached from the terminal with all file descriptors (including 0, 1 and 2) closed. It makes the daemon unable to display any uncaught errors.
Consider using python-daemon library which takes care of spawning daemons and pid files according to the PEP 3243.
Leave stderr open in debug mode.
Create a pipe to the parent process to send errors and notify of successful start or failure.
The text was updated successfully, but these errors were encountered: