Skip to content

Commit

Permalink
Merge pull request #2610 from finos/fix-python-delete
Browse files Browse the repository at this point in the history
Fix `delete()` Python async call not resolving
  • Loading branch information
texodus committed May 4, 2024
2 parents c39fcc4 + 7f6d51e commit 8460585
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions python/perspective/perspective/manager/manager_internal.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ def _process_method_call(self, msg, post_callback, client_id):
# calls to `delete` on the view and return.
self._views[msg["name"]].delete()
self._views.pop(msg["name"], None)
post_callback(self._message_to_json(msg["id"], {"id": msg["id"]}))
return
else:
# Return an error when `table.delete()` is called
Expand Down

0 comments on commit 8460585

Please sign in to comment.