Skip to content

Commit

Permalink
Unsubscribe lock issue fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dhinesh03 committed Oct 24, 2024
1 parent e1e1092 commit a9e9a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appsync_ws_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, url: str, auth_function: Callable[[], Dict[str, str]], max_re
self._acknowledged_event = threading.Event()
self.max_retries = max_retries
self.retry_count = 0
self.lock = threading.Lock()
self.lock = threading.RLock()

def _build_ws_url(self) -> str:
"""
Expand Down

0 comments on commit a9e9a38

Please sign in to comment.