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 eb15306 commit 32bef98Copy full SHA for 32bef98
graphdatascience/query_runner/session_query_runner.py
@@ -205,7 +205,7 @@ def run_write_back() -> DataFrame:
205
except Exception as e:
206
# catch the case nothing was needed to write-back (empty graph)
207
# once we have the Arrow Endpoints V2, we could catch by first checking the jobs summary
208
- if "No entry with job id" in str(e) and gds_write_result.get("writeMillis", -1) == 0:
+ if "No entry with job id" in str(e) and gds_write_result.iloc[0].get("writeMillis", -1) == 0:
209
return gds_write_result
210
raise e
211
0 commit comments