Skip to content

Commit 6c31564

Browse files
committed
.
1 parent 886b8d4 commit 6c31564

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

scratchattach/eventhandlers/cloud_events.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,15 @@ def _updater(self):
5353
except Exception:
5454
print("CloudEvents: Disconnected. Reconnecting ...", time.time())
5555
time.sleep(0.1) # cooldown
56-
self.source_cloud.connect()
56+
while True:
57+
try:
58+
self.source_cloud.connect()
59+
except Exception:
60+
print("CloudEvents: Reconnecting failed, trying again in 10 seconds.", time.time())
61+
time.sleep(10)
62+
else:
63+
break
64+
5765
print("CloudEvents: Reconnected.", time.time())
5866
self.call_event("on_reconnect", [])
5967

0 commit comments

Comments
 (0)