Skip to content

Commit 7390ea3

Browse files
chore(gae): delete old region tags in standard_python3/pubsub/ (GoogleCloudPlatform#13144)
1 parent ac0c596 commit 7390ea3

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

appengine/standard_python3/pubsub/app.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,9 @@
1515
runtime: python39
1616

1717
# [START gae_standard_pubsub_env]
18-
#[START env]
1918
env_variables:
2019
PUBSUB_TOPIC: ''
2120
# This token is used to verify that requests originate from your
2221
# application. It can be any sufficiently random string.
2322
PUBSUB_VERIFICATION_TOKEN: ''
24-
#[END env]
2523
# [END gae_standard_pubsub_env]

appengine/standard_python3/pubsub/main.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939

4040

4141
# [START gae_standard_pubsub_index]
42-
# [START index]
4342
@app.route("/", methods=["GET", "POST"])
4443
def index():
4544
if request.method == "GET":
@@ -58,7 +57,6 @@ def index():
5857
future = publisher.publish(topic_path, data)
5958
future.result()
6059
return "OK", 200
61-
# [END index]
6260
# [END gae_standard_pubsub_index]
6361

6462

0 commit comments

Comments
 (0)