You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to init the app as given in docs, i see:
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/query.py", line 1229, in wrapper
return wrapped(self, *dummy_args, _options=query_options)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/utils.py", line 78, in wrapper
return wrapped(*args, **new_kwargs)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/utils.py", line 110, in positional_wrapper
return wrapped(*args, **kwds)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/query.py", line 2063, in get
return self.get_async(_options=kwargs["_options"]).result()
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 193, in result
self.check_success()
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 140, in check_success
raise self._exception
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 312, in _advance_tasklet
self.generator.throw(type(error), error, traceback)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/query.py", line 2097, in get_async
results = yield _datastore_query.fetch(options)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 312, in _advance_tasklet
self.generator.throw(type(error), error, traceback)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/_datastore_query.py", line 108, in fetch
while (yield results.has_next_async()):
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 312, in _advance_tasklet
self.generator.throw(type(error), error, traceback)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/_datastore_query.py", line 267, in has_next_async
yield self._next_batch() # First time
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 312, in _advance_tasklet
self.generator.throw(type(error), error, traceback)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/_datastore_query.py", line 297, in _next_batch
response = yield _datastore_run_query(query)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 312, in _advance_tasklet
self.generator.throw(type(error), error, traceback)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/_datastore_query.py", line 878, in _datastore_run_query
"RunQuery", request, timeout=query.timeout
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/tasklets.py", line 315, in _advance_tasklet
yielded = self.generator.send(send_value)
File "/Users/riteshn/projects/gae-py3-boilerplate/ENV/lib/python3.7/site-packages/google/cloud/ndb/_retry.py", line 87, in retry_wrapper
cause=error,
google.api_core.exceptions.RetryError: Maximum number of 3 retries exceeded while calling <function make_call.<locals>.rpc_call at 0x1113523b0>, last exception: 503 failed to connect to all addresses
Do I need to run something special? I also tried to run this with the datastore emulator and even set DATASTORE_EMULATOR_HOST=localhost:8081
The text was updated successfully, but these errors were encountered:
Hey, not sure what exactly is wrong here. Seems like a problem with Datastore. Can you check if you have everything installed properly: Cloud SDK, all the Cloud SDK extensions necessary, everything in requirements.txt etc.
When I try to init the app as given in docs, i see:
Do I need to run something special? I also tried to run this with the datastore emulator and even set
DATASTORE_EMULATOR_HOST=localhost:8081
The text was updated successfully, but these errors were encountered: