Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #34617
| Date | 2012-12-11 10:34 -0300 |
|---|---|
| From | peter <pjmakey2@gmail.com> |
| Subject | Re: forking and avoiding zombies! |
| References | <CAF_E5JbjkWfjyCg3HwuQLekzqm=8c7X9iR=D0rZF+ekr4WcEPw@mail.gmail.com> <50C6153F.8050205@gmail.com> <CAF_E5JbPa9gb_a7o1ZgwaNfhu_ycz+CdnMCvhDe2VC8Dy5WAgA@mail.gmail.com> <50C7282B.8000708@gmail.com> <CAF_E5JZfqEsxxfCoE_TzOAxjPhwgzFe+M_MmwBUwHURdVGZLKQ@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.725.1355233352.29569.python-list@python.org> (permalink) |
On 12/11/2012 10:25 AM, andrea crotti wrote: > Ah sure that makes sense! > > But actually why do I need to move away from the current directory of > the parent process? > In my case it's actually useful to be in the same directory, so maybe > I can skip that part, > or otherwise I need another chdir after.. You don't need to move away from the current directory. You cant use os to get the current work directory stderrfile = '%s/error.log' % os.getcwd() stdoutfile = '%s/out.log' % os.getcwd() then call the daemon function like this. daemonize(stdout=stdoutfile, stderr=stderrfile)
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Re: forking and avoiding zombies! peter <pjmakey2@gmail.com> - 2012-12-11 10:34 -0300 Re: forking and avoiding zombies! Thomas Rachel <nutznetz-0c1b6768-bfa9-48d5-a470-7603bd3aa915@spamschutz.glglgl.de> - 2012-12-11 16:15 +0100
csiph-web