8000 module -> service in app.yamls (#1020) · johnmanong/python-docs-samples@f18e7c6 · GitHub
[go: up one dir, main page]

Skip to content

Commit f18e7c6

Browse files
author
Jon Wayne Parrott
authored
module -> service in app.yamls (GoogleCloudPlatform#1020)
1 parent ca516a6 commit f18e7c6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

appengine/standard/channel/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module: tictactoe
1+
service: tictactoe
22
runtime: python27
33
version: 1
44
api_version: 1

appengine/standard/modules/backend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
runtime: python27
22
api_version: 1
33
threadsafe: yes
4-
module: my-backend
4+
service: my-backend
55

66
handlers:
77
- url: .*

appengine/standard/taskqueue/counter/app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
runtime: python27
22
api_version: 1
33
threadsafe: true
4-
module: default
4+
service: default
55

66
handlers:
77
- url: /.*

appengine/standard/taskqueue/counter/worker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
runtime: python27
22
api_version: 1
33
threadsafe: true
4-
module: worker
4+
service: worker
55

66
handlers:
77
- url: /.*

appengine/standard/taskqueue/pull-counter/worker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module: worker
1+
service: worker
22
api_version: 1
33
runtime: python27
44
instance_class: B1

0 commit comments

Comments
 (0)
0