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 c2443d2 commit 6b90b08Copy full SHA for 6b90b08
graphdatascience/query_runner/aura_db_query_runner.py
@@ -124,8 +124,8 @@ def _remote_write_back(
124
db_arrow_config = params["config"].pop("arrowConfiguration", {}) # type: ignore
125
self._inject_arrow_config(db_arrow_config)
126
127
- job_id = params["config"]["jobId"] if "jobId" in params["config"] else str(uuid4())
128
- params["config"]["jobId"] = job_id
+ job_id = params["config"]["jobId"] if "jobId" in params["config"] else str(uuid4()) # type: ignore
+ params["config"]["jobId"] = job_id # type: ignore
129
130
params["config"]["writeToResultStore"] = True # type: ignore
131
0 commit comments