From de77c12f196bfdaac34b7ac58354e3e09525b721 Mon Sep 17 00:00:00 2001 From: Guilherme Souza Date: Thu, 26 Sep 2024 19:58:14 -0300 Subject: [PATCH] fix: add missing arg on on_join_push_timeout (#208) --- realtime/_async/channel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/realtime/_async/channel.py b/realtime/_async/channel.py index d4a0662..26e2b23 100644 --- a/realtime/_async/channel.py +++ b/realtime/_async/channel.py @@ -235,7 +235,7 @@ def on_join_push_error(payload: Dict[str, Any]): Exception(json.dumps(payload)), ) - def on_join_push_timeout(): + def on_join_push_timeout(*args): callback and callback(RealtimeSubscribeStates.TIMED_OUT, None) self.join_push.receive("ok", on_join_push_ok).receive(