mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 09:58:06 +00:00
Make the restart tool try again if it fails to restart.
(imported from commit 216dcdcaa096c26e26b385029d62d0310349a6c9)
This commit is contained in:
@@ -136,7 +136,13 @@ def update_subscriptions_from_humbug():
|
||||
def maybe_restart_mirroring_script():
|
||||
if os.stat("/mit/tabbott/for_friends/restart_stamp").st_mtime > start_time:
|
||||
print "zephyr mirroring script has been updated; restarting..."
|
||||
while True:
|
||||
try:
|
||||
os.execvp("/mit/tabbott/for_friends/zephyr_mirror.py", sys.argv)
|
||||
except:
|
||||
print "Error restarting, trying again."
|
||||
traceback.print_exc()
|
||||
time.sleep(10)
|
||||
|
||||
def process_loop(log):
|
||||
sleep_count = 0
|
||||
|
||||
Reference in New Issue
Block a user