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.
2 parents ece9767 + 104a95a commit 6673f43Copy full SHA for 6673f43
seatable_api/socket_io.py
@@ -18,6 +18,10 @@ def _handle_disconnect(self, namespace):
18
namespace = namespace or '/'
19
self._trigger_event('io-disconnect', namespace=namespace)
20
21
+ def connect(self, *args, **kwargs):
22
+ kwargs['socketio_path'] = '/api-gateway/socket.io'
23
+ return super().connect(*args, **kwargs)
24
+
25
26
class SocketIO(object):
27
0 commit comments