Skip to content

Commit cc4ea07

Browse files
authored
chore(fixit): remove redundant region tags (#11722)
Manually searched docs and confirmed no references remain. Only removed comments, no code changes. Removed these tags: run_helloworld_service run_pubsub_handler
1 parent 561635f commit cc4ea07

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

run/helloworld/main.py

-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# limitations under the License.
1414

1515
# [START cloudrun_helloworld_service]
16-
# [START run_helloworld_service]
1716
import os
1817

1918
from flask import Flask
@@ -30,5 +29,4 @@ def hello_world():
3029

3130
if __name__ == "__main__":
3231
app.run(debug=True, host="0.0.0.0", port=int(os.environ.get("PORT", 8080)))
33-
# [END run_helloworld_service]
3432
# [END cloudrun_helloworld_service]

run/pubsub/main.py

-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424

2525

2626
# [START cloudrun_pubsub_handler]
27-
# [START run_pubsub_handler]
2827
@app.route("/", methods=["POST"])
2928
def index():
3029
"""Receive and parse Pub/Sub messages."""
@@ -50,5 +49,4 @@ def index():
5049
return ("", 204)
5150

5251

53-
# [END run_pubsub_handler]
5452
# [END cloudrun_pubsub_handler]

0 commit comments

Comments
 (0)