I've migrated my app to using modules instead of backends. To do so, I followed the instructions on this page: https://developers.google.com/appengine/docs/python/modules/
For some reason however, when I go to the App Engine Dashboard and then to Administration > Application Settings, the following notification is shown under Performace:
Some performance settings must be changed via Module configuration files. See the Modules documentation for more information
With the notification there is a link included which leads to the page I posted above.
The top of my app.yaml looks as follows (and therefore should take default settings):
application: myapp
version: uno
runtime: python27
api_version: 1
threadsafe: true
And the top of my module looks as follows:
application: myapp
module: tasks
version: uno
runtime: python27
api_version: 1
threadsafe: true
instance_class: B4
basic_scaling:
max_instances: 1
idle_timeout: 10m
What performance settings is the notification referring to?