Commit aaf72ab7 authored by Jim Fulton's avatar Jim Fulton

Fixed runzeo_logrotate_on_sigusr2 to work with Python 2.5.

parent 15f8fd53
......@@ -1518,7 +1518,7 @@ def runzeo_logrotate_on_sigusr2():
>>> oldlog = open('l').read()
>>> os.rename('l', 'o')
>>> p.send_signal(signal.SIGUSR2)
>>> os.kill(p.pid, signal.SIGUSR2)
>>> wait_until('new file', lambda : os.path.exists('l'))
>>> s = ClientStorage(port)
......@@ -1529,7 +1529,7 @@ def runzeo_logrotate_on_sigusr2():
# Cleanup:
>>> p.kill()
>>> os.kill(p.pid, signal.SIGKILL)
>>> _ = p.wait()
"""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment