Skip to content

Commit

Permalink
fix: add missing arg on on_join_push_timeout (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
grdsdev authored Sep 26, 2024
1 parent b9d52af commit de77c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion realtime/_async/channel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit de77c12

Please sign in to comment.