We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6c8241 commit c8038acCopy full SHA for c8038ac
1 file changed
scratchattach/eventhandlers/cloud_events.py
@@ -62,9 +62,9 @@ def _updater(self):
62
self.subsequent_reconnects += 1
63
time.sleep(0.1) # cooldown
64
65
- if self.subsequent_reconnects >= 5:
66
- print(f"Warning: {self.subsequent_reconnects} subsequent cloud disconnects. Cloud may be down, causing CloudEvents to not call events.")
67
- self.call_event("on_reconnect", [])
+ if self.subsequent_reconnects >= 5:
+ print(f"Warning: {self.subsequent_reconnects} subsequent cloud disconnects. Cloud may be down, causing CloudEvents to not call events.")
+ self.call_event("on_reconnect", [])
68
69
class ManualCloudLogEvents:
70
"""
0 commit comments