本文介绍了GAE php应用程序Push-to-Deploy失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用git使用新的推送到部署功能部署到GAE。
部署失败,出现此错误:

I'm trying to deploy to GAE with the new Push-to-Deploy feature using git.The deployment failed with this error:

我的app.yaml文件:

my app.yaml file:

application: appname
version: 1
runtime: php
api_version: 1
threadsafe = true

我无法找到简单键的含义。

I couldn't find what the simple key means.

推荐答案

app.yaml 文件中更改以下行:

Change this line in your app.yaml file:

threadsafe = true

收件人:

threadsafe: true

这篇关于GAE php应用程序Push-to-Deploy失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 16:55