Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(261)

Side by Side Diff: tools/android/loading/cloud/frontend/app.yaml

Issue 2023073003: Clovis: upgrade instance class so we don't have to optimize memory usage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 runtime: python27 1 runtime: python27
2 api_version: 1 2 api_version: 1
3 threadsafe: yes 3 threadsafe: yes
4 instance_class: F4_1G
4 5
5 builtins: 6 builtins:
6 - deferred: on 7 - deferred: on
7 8
8 handlers: 9 handlers:
9 10
10 - url: /_ah/queue/deferred 11 - url: /_ah/queue/deferred
11 # For the deferred API (https://cloud.google.com/appengine/articles/deferred). 12 # For the deferred API (https://cloud.google.com/appengine/articles/deferred).
12 script: google.appengine.ext.deferred.deferred.application 13 script: google.appengine.ext.deferred.deferred.application
13 login: admin 14 login: admin
14 15
15 - url: /static 16 - url: /static
16 # Static content. 17 # Static content.
17 static_dir: static 18 static_dir: static
18 19
19 - url: .* 20 - url: .*
20 script: clovis_frontend.app 21 script: clovis_frontend.app
21 22
22 libraries: 23 libraries:
23 - name: ssl 24 - name: ssl
24 version: latest 25 version: latest
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698