We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0431a0b commit 722d515Copy full SHA for 722d515
graphdatascience/query_runner/arrow_graph_constructor.py
@@ -55,7 +55,7 @@ def run(self, node_dfs: List[DataFrame], relationship_dfs: List[DataFrame]) -> N
55
self._send_dfs(relationship_dfs, "relationship")
56
57
self._send_action("RELATIONSHIP_LOAD_DONE", {"name": self._graph_name})
58
- except Exception as e:
+ except (Exception, KeyboardInterrupt) as e:
59
self._send_action("ABORT", {"name": self._graph_name})
60
61
raise e
0 commit comments