Mercurial > hg
view tests/killdaemons.py @ 9515:f7d85980261c
Add script to rewrite revlog to workaround lack of parent deltas.
Defaults to rewriting the manifest in the current repository.
Based on a patch to rewrite-log by Benoit Boissinot that I found here:
http://article.gmane.org/gmane.comp.version-control.mercurial.general/11908
author | Greg Ward <greg-hg@gerg.ca> |
---|---|
date | Thu, 27 Aug 2009 10:21:32 -0400 |
parents | 3b76321aa0de |
children | 13a1b2fb7ef2 |
line wrap: on
line source
#!/usr/bin/env python import os, sys, time, errno, signal # Kill off any leftover daemon processes try: fp = open(os.environ['DAEMON_PIDS']) for line in fp: try: pid = int(line) except ValueError: continue try: os.kill(pid, 0) os.kill(pid, signal.SIGTERM) for i in range(10): time.sleep(0.05) os.kill(pid, 0) os.kill(pid, signal.SIGKILL) except OSError, err: if err.errno != errno.ESRCH: raise fp.close() except IOError: pass