We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e52fa0 commit 523d751Copy full SHA for 523d751
2 files changed
datastore/google/cloud/datastore/query.py
@@ -492,7 +492,7 @@ def _next_page(self):
492
pb = self._build_protobuf()
493
transaction = self.client.current_transaction
494
495
- query_results = self.client.connection.run_query(
+ query_results = self.client._connection.run_query(
496
query_pb=pb,
497
project=self._query.project,
498
namespace=self._query.namespace,
system_tests/datastore.py
@@ -45,7 +45,7 @@ def clone_client(client):
45
cloned_client = datastore.Client(project=client.project,
46
namespace=client.namespace,
47
http=object())
48
- cloned_client.connection = client.connection
+ cloned_client._connection = client._connection
49
return cloned_client
50
51
0 commit comments