Skip to content

Commit

Permalink
Update manual layer to route arguments correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Sneeringer committed Nov 8, 2017
1 parent 0b1c15a commit 9246de7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion datastore/google/cloud/datastore/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ def _extended_lookup(datastore_api, project, key_pbs,
while loop_num < _MAX_LOOPS: # loop against possible deferred.
loop_num += 1
lookup_response = datastore_api.lookup(
project, read_options, key_pbs)
project_id=project,
read_options=read_options,
keys=key_pbs,
)

# Accumulate the new results.
results.extend(result.entity for result in lookup_response.found)
Expand Down

0 comments on commit 9246de7

Please sign in to comment.