简体   繁体   中英

App Engine Endpoints DOWN

I use Google Cloud Endpoints for my application. Whenever I hit the application root, it gives an error. The console says:

Importing endpoints from google.appengine.ext is deprecated and will be removed.  Add the endpoints library to app.yaml, then endpoints can be imported simply with "import endpoints".

There is no mention of this in the documentation and I believe I am doing this correctly.

I tried adding endpoints to the library section of app.yaml , but the deployment failed saying that it wasn't a valid library. When I look in the instance page, it says that my instances are running on App Engine 1.8.5 , which is a pre-release version that hasn't even come out yet!

Is this a Google problem or something with my code?

The message you're seeing is a warning, not an error. Endpoints running on Python 2.7 will continue to work without code changes.

However, you may also be seeing an error if you're trying to run Endpoints on Python 2.5. This will no longer work, and unfortunately was not well communicated prior to the release. To resume use of Endpoints, you'll need to update your application to Python 2.7.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM