add non-daemon mode for development

I found in trying to add features, I really needed a non daemon
mode to do this efficiently. It shouldn't hurt to have it in the
main program.

Change-Id: Ie8c02a7b6f834436aa5749097e3d9f6dbb33107b
Reviewed-on: https://review.openstack.org/23340
Reviewed-by: James E. Blair <corvus@inaugust.com>
Reviewed-by: Monty Taylor <mordred@inaugust.com>
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Approved: Clark Boylan <clark.boylan@gmail.com>
Tested-by: Jenkins
This commit is contained in:
Sean Dague 2013-03-02 08:01:31 -05:00 committed by Jenkins
parent 51bf7ed8c1
commit 18fd3f8d27

View File

@ -149,25 +149,28 @@ class Scoreboard(threading.Thread):
except:
traceback.print_exc()
def _main():
def _main(daemonize=True):
config = ConfigParser.ConfigParser()
config.read(sys.argv[1])
s = Scoreboard(config)
s.start()
if daemonize:
s.start()
def main():
if len(sys.argv) < 2:
print "Usage: %s CONFIGFILE" % sys.argv[0]
sys.exit(1)
if '-d' not in sys.argv:
if '-n' in sys.argv:
_main(daemonize=False)
elif '-d' in sys.argv:
_main()
else:
pid = pid_file_module.TimeoutPIDLockFile(
"/var/run/recheckwatch/recheckwatch.pid", 10)
with daemon.DaemonContext(pidfile=pid):
_main()
else:
_main()
if __name__ == "__main__":
main()