Skip to content

Commit b431c7e

Browse files
Remove debug print statements
1 parent 574ffb2 commit b431c7e

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

graphdatascience/query_runner/aura_db_arrow_query_runner.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ def __init__(self, fallback_query_runner: QueryRunner, aura_db_connection_info:
3030
.squeeze()
3131
)
3232

33-
print(arrow_info)
34-
3533
if not arrow_info.get("running"):
3634
raise RuntimeError("The plugin arrow server for AuraDB is not running")
3735
listen_address: Optional[str] = arrow_info.get("advertisedListenAddress") # type: ignore
@@ -63,14 +61,11 @@ def run_query(
6361
params = {}
6462

6563
if "gds.alpha.graph.project.remote" in query:
66-
print("call remote projection")
6764
token, aura_db_arrow_endpoint = self._get_or_request_auth_pair()
6865
params["token"] = token
6966
params["host"] = aura_db_arrow_endpoint
7067
params["config"] = {"useEncryption": False}
7168

72-
print(query)
73-
print(params)
7469
return self._fallback_query_runner.run_query(query, params, database, custom_error)
7570

7671
def set_database(self, database: str) -> None:
@@ -92,7 +87,6 @@ def close(self) -> None:
9287
self._fallback_query_runner.close()
9388

9489
def _get_or_request_auth_pair(self) -> Tuple[str, str]:
95-
print(self._client.authenticate_basic_token(self._auth[0], self._auth[1]))
9690
return (self._auth_pair_middleware.token(), self._auth_pair_middleware.endpoint())
9791

9892

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
envlist =
33
py37-neo4j{4,5}-main-{standard,encrypted},
44
py37-pyarrow{4,5,6,7,8,9,10,11,12}-main-{standard,encrypted},
5-
py37-neo4j{4,5}-pyarrow{10,11,12}-main-{cloud-architecture}
65
py{38,39}-neo4j{4,5}-pandas{1,2}-main-{standard,encrypted},
76
py{38,39}-pandas{1,2}-pyarrow{4,5,6,7,8,9,10,11,12}-main-{standard,encrypted},
87
py310-pandas{1,2}-pyarrow{7,8,9,10,11,12}-main-{standard,encrypted},

0 commit comments

Comments
 (0)