Skip to content

Commit

Permalink
chore: remove debug flag
Browse files Browse the repository at this point in the history
  • Loading branch information
pattishin committed Aug 24, 2023
1 parent cd59880 commit a61d084
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vpc-sample/run/run-egress/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ def get_hello_world():
return str(e)

if __name__ == "__main__":
app.run(host="localhost", port=8080, debug=True)
app.run(host="localhost", port=8080)
# [END cloudrun_egress_hello_world_2]
2 changes: 1 addition & 1 deletion vpc-sample/run/run-ingress/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ def hello():
# [END cloudrun_ingress_hello_world]

if __name__ == "__main__":
app.run(host="localhost", port=8080, debug=True)
app.run(host="localhost", port=8080)

0 comments on commit a61d084

Please sign in to comment.