Tyler
Tyler

Reputation: 2386

How to change version of google app engine being used on server

I have built my google app engine app using version 1.8.8 but the production server hosted by google uses 1.9.11. I think this may be causing problems within my app since my app works locally but not on the production server. Is there anyway to change the version of the sdk that the production server uses? I can't seem to find any documentation on this.

Upvotes: 0

Views: 54

Answers (1)

Thanos Makris
Thanos Makris

Reputation: 3115

No, you cannot define specifically which version of the SDK will run on the production servers. Typically, they run on the latest available SDK. If you are certain the that problems are caused due to the different versions of the SDK, I would propose to update your code accordingly.

Upvotes: 1

Related Questions