From ac415cdd0f88f8479975627772dd0a84797b261a Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Tue, 10 Nov 2015 13:09:07 +0000 Subject: Use a lock to serialize rpkid tasks. Add temporary trace call sequence trace code to rpki.rpkidb.models to assist in simplifying some of the gratuitously complicated method call chains. Various trivial PyLint cleanups. svn path=/branches/tk705/; revision=6161 --- rpki/daemonize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rpki/daemonize.py') diff --git a/rpki/daemonize.py b/rpki/daemonize.py index bd59fca0..472d4b33 100644 --- a/rpki/daemonize.py +++ b/rpki/daemonize.py @@ -100,7 +100,7 @@ def daemon(nochdir = False, noclose = False, pidfile = None): sys.exit("fork() failed: %d (%s)" % (e.errno, e.strerror)) else: if pid > 0: - os._exit(0) + os._exit(0) # pylint: disable=W0212 if not nochdir: os.chdir("/") -- cgit v1.2.3