Reputation: 43
I'm trying to deploy to GAE with the new Push-to-Deploy feature using git. The deployment failed with this error:
Deployment failed, details: { Failed to load application, while scanning a simple key; could not found expected ':', none}
my app.yaml file:
application: appname
version: 1
runtime: php
api_version: 1
threadsafe = true
I couldn't find what the simple key means.
Upvotes: 1
Views: 1072
Reputation: 76
Change this line in your app.yaml
file:
threadsafe = true
To:
threadsafe: true
Upvotes: 6