We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e670e6 commit 650db34Copy full SHA for 650db34
1 file changed
graphql_ws/base_sync.py
@@ -21,7 +21,7 @@ def on_connect(self, connection_context, payload):
21
pass
22
23
def on_close(self, connection_context):
24
- remove_operations = list(connection_context.operations.keys())
+ remove_operations = list(connection_context.operations)
25
for op_id in remove_operations:
26
self.unsubscribe(connection_context, op_id)
27
0 commit comments