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.
2 parents cbf4b79 + 722d515 commit f94a622Copy full SHA for f94a622
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