-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Workers no longer start, error in pubsub #3863
Comments
Confirmed. Investigating. |
Hi @kardamom, |
Hi @lukesneeringer Thanks for picking that up so quickly. However, requiring google-cloud-core 0.27 breaks google-cloud-logging, which needs 0.26 make test (env: epweb) During handling of the above exception, another exception occurred: During handling of the above exception, another exception occurred: If I uninstall google-cloud-core then upgrade google-cloud-logging, I'm left with google-cloud-core 0.26, and back to the error I initially reported. |
@kardamom |
Thanks for reporting it. That was a boneheaded (but easy to make) mistake on my part and I am glad it was not in the wild for long. |
0.27.0 is that last release with the old api. Maybe update the release notes and mention that it is broken or publish a 0.27.1 if easy. Also 0.26.0 seems to suffer from the import error. So which is the last release that works with the old api? |
As of this morning, when I gcloud app deploy, the workers no longer start.
I'm using Google AppEngine, Python Flexible Environment
[2017-08-24 19:41:31 +0000] [9] [ERROR] Exception in worker process
Traceback (most recent call last):
File "/env/lib/python3.5/site-packages/gunicorn/arbiter.py", line 578, in spawn_worker
worker.init_process()
File "/env/lib/python3.5/site-packages/gunicorn/workers/base.py", line 126, in init_process
self.load_wsgi()
File "/env/lib/python3.5/site-packages/gunicorn/workers/base.py", line 135, in load_wsgi
self.wsgi = self.app.wsgi()
File "/env/lib/python3.5/site-packages/gunicorn/app/base.py", line 67, in wsgi
self.callable = self.load()
File "/env/lib/python3.5/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
return self.load_wsgiapp()
File "/env/lib/python3.5/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
return util.import_app(self.app_uri)
File "/env/lib/python3.5/site-packages/gunicorn/util.py", line 352, in import_app
import(module)
File "/home/vmagent/app/main.py", line 2, in
import episteme.factory
File "/home/vmagent/app/episteme/factory.py", line 25, in
import episteme.model
File "/home/vmagent/app/episteme/model/init.py", line 662, in
from . import user
File "/home/vmagent/app/episteme/model/user.py", line 563, in
from episteme.mail import EpistemeMailManager
File "/home/vmagent/app/episteme/mail/init.py", line 16, in
from google.cloud import pubsub
File "/env/lib/python3.5/site-packages/google/cloud/pubsub.py", line 17, in
from google.cloud.pubsub_v1 import PublisherClient
File "/env/lib/python3.5/site-packages/google/cloud/pubsub_v1/init.py", line 18, in
from google.cloud.pubsub_v1.publisher import Client as PublisherClient
File "/env/lib/python3.5/site-packages/google/cloud/pubsub_v1/publisher/init.py", line 17, in
from google.cloud.pubsub_v1.publisher.client import Client
File "/env/lib/python3.5/site-packages/google/cloud/pubsub_v1/publisher/client.py", line 27, in
from google.cloud.pubsub_v1.publisher.batch import thread
File "/env/lib/python3.5/site-packages/google/cloud/pubsub_v1/publisher/batch/thread.py", line 22, in
from google.cloud.pubsub_v1.publisher import exceptions
File "/env/lib/python3.5/site-packages/google/cloud/pubsub_v1/publisher/exceptions.py", line 19, in
from google.api.core.exceptions import GoogleAPICallError
ImportError: No module named 'google.api.core'
The text was updated successfully, but these errors were encountered: