Arik
Arik

Reputation: 43

GAE php app Push-to-Deploy failed

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

Answers (1)

Pratul
Pratul

Reputation: 76

Change this line in your app.yaml file:

threadsafe = true

To:

threadsafe: true

Upvotes: 6

Related Questions