added comment on why not os.chdir

This commit is contained in:
Brian Coca 2017-06-19 17:16:04 -04:00
commit 9730d96517

View file

@ -60,7 +60,8 @@ def do_fork():
pid = os.fork()
if pid > 0:
return pid
# This is done as a 'good practice' for daemons, but we need to keep the cwd
# leaving it here as a note that we KNOW its good practice but are not doing it on purpose.
#os.chdir("/")
os.setsid()
os.umask(0)