A few more mitogen.slave/master changes

wip-fakessh-exit-status
David Wilson 7 years ago
parent 708b742a9c
commit 25e4724bac

@ -12,7 +12,7 @@ mitogen Package
.. automodule:: mitogen
.. autodata:: mitogen.slave
.. autodata:: mitogen.master
.. autodata:: mitogen.context_id
.. autodata:: mitogen.parent_id

@ -106,5 +106,5 @@ def main(router):
for x in xrange(10):
print context.call(run_module, 'ansible.modules.core.commands.command', 'hostname')
if __name__ == '__main__' and not mitogen.slave:
if __name__ == '__main__' and mitogen.master:
mitogen.utils.run_with_router(main)

@ -18,5 +18,5 @@ def main():
broker.shutdown()
broker.join()
if __name__ == '__main__' and not mitogen.slave:
if __name__ == '__main__' and mitogen.master:
main()

@ -33,5 +33,5 @@ def main(broker):
#context.call(mitogen.utils.log_to_file, '/tmp/log')
context.call(serve_django_app, 'webproject.settings')
if __name__ == '__main__' and not mitogen.slave:
if __name__ == '__main__' and mitogen.master:
mitogen.utils.run_with_broker(main)

Loading…
Cancel
Save