We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d347931 commit b662669Copy full SHA for b662669
scratchattach/eventhandlers/cloud_events.py
@@ -51,7 +51,9 @@ def _updater(self):
51
pass
52
except Exception:
53
time.sleep(0.1) # cooldown
54
+ print("CloudEvents: Disconnected. Reconnecting ...", time.time())
55
self.source_cloud.connect()
56
+ print("CloudEvents: Reconnected.", time.time())
57
self.call_event("on_reconnect", [])
58
59
setup.py
@@ -2,7 +2,7 @@
2
import codecs
3
import os
4
5
-VERSION = '2.0.6'
+VERSION = '2.0.8'
6
DESCRIPTION = 'A Scratch API Wrapper'
7
LONG_DESCRIPTION = DESCRIPTION
8
0 commit comments