Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Cloud Storage Client not working on dev appserver

I 'm building an AppEngine application that stores data in Google Cloud Storage. I use the Google Cloud Storage Client (GCS) library as suggested.

My app is working when deployed on AppEngine (reading/writing/listing objects) but I cannot make it work on the development server. The development server keeps returning error 404 and GCS raises NotFoundError. The dev-appserver is supposed to emulate the cloud storage functionality without any specific configurations etc. I see in the log files that the dev server is accepting requests at "/_ah/gcs" yet it seems that there is no handler for that url. I 've tried with version 1.8.5 and 1.8.6. Apart from my app, not even the demo app provided by Google works.

Is there something that I 'm missing here, e.g. a special configuration for the dev-appserver?

like image 875
Christos Avatar asked Nov 01 '13 13:11

Christos


1 Answers

Sorry the following change was pushed out too early by mistake. It only works with 1.8.8 SDK. We are streamlining the release process of gcs client to align with SDK. Sorry

https://code.google.com/p/appengine-gcs-client/source/detail?r=125 Without this change, it works on 1.8.7 SDK.

like image 107
Yey Avatar answered Oct 31 '22 12:10

Yey