Skip to content

Commit 3ece716

Browse files
committed
Pass host as str again
as the cypher proc expects a string
1 parent b3978a8 commit 3ece716

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphdatascience/query_runner/session_query_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,6 @@ def _inject_arrow_config(self, params: dict[str, Any]) -> None:
269269
token = "IGNORED"
270270

271271
params["host"] = connection_info.host
272-
params["port"] = connection_info.port
272+
params["port"] = str(connection_info.port)
273273
params["token"] = token
274274
params["encrypted"] = connection_info.encrypted

0 commit comments

Comments
 (0)