Skip to content
Snippets Groups Projects
Commit 2c00be23 authored by Vermaat's avatar Vermaat
Browse files

Use python-daemon >= 1.6 API

parent 390ca72c
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ should be run with the mutalyzer directory as working directory.
import os
import sys
from daemon import pidlockfile, DaemonContext
from daemon import pidfile, DaemonContext
from lockfile import LockTimeout
import signal
import time
......@@ -40,10 +40,10 @@ def daemonize():
Write PID file when it is not locked and daemonize a loop processing
scheduled batch jobs.
"""
pidfile = os.path.realpath(config.get('PIDfile'))
pidfile_path = os.path.realpath(config.get('PIDfile'))
lockfile = pidlockfile.TimeoutPIDLockFile(pidfile, acquire_timeout=1,
threaded=False)
lockfile = pidfile.TimeoutPIDLockFile(pidfile_path, acquire_timeout=1,
threaded=False)
context = DaemonContext(working_directory=os.getcwd(),
pidfile=lockfile)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment