google app engine 错误解决记录

有一次出现这样的错误:

Error: Server Error

The server encountered an error and could not complete your request.

If the problem persists, please report your problem and mention this error message and the query that caused it.

 

原因查来查去,原来是这样的

在app.yaml配置里面

- url: /geo
  script: foo.bar.py

我打算映射到放在包foo里面的bar.py文件

却不想总是出现如上错误。

然后尝试一下这样

- url: /geo
  script: foo/bar.py

哈哈,解决了。看来和java的package里面的概念不一样哦!

 

你可能感兴趣的:(Google)