Skip to content

Commit 583f3f0

Browse files
committed
Fix async unsubscribe
1 parent 7bfc590 commit 583f3f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql_ws/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,4 +178,4 @@ def unsubscribe(self, connection_context, op_id):
178178
connection_context.get_operation(op_id).dispose()
179179
# Close operation
180180
connection_context.remove_operation(op_id)
181-
self.on_operation_complete(connection_context, op_id)
181+
return self.on_operation_complete(connection_context, op_id)

0 commit comments

Comments
 (0)