File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1- runtime : python310
1+ runtime : python311
22
33automatic_scaling :
44 max_instances : 2
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ Flask ~= 2.2
22gevent ~= 22.10
33geventhttpclient ~= 2.0
44google-cloud-ndb ~= 2.1
5- google-cloud-tasks ~= 2.12
5+ google-cloud-tasks ~= 2.13
66gunicorn ~= 20.1
Original file line number Diff line number Diff line change @@ -99,15 +99,15 @@ def show_routes(c):
9999 # fmt: on
100100 },
101101)
102- def deploy (c , target = "stage " ):
102+ def deploy (c , target = "staging " ):
103103 """Deploy app."""
104104 _ensure_private_mount (c )
105105 if target == "all" :
106- targets = "stage " , "prod"
106+ targets = "staging " , "prod"
107107 else :
108108 targets = (target ,)
109109 for t in targets :
110- if t == "stage " :
110+ if t == "staging " :
111111 cmd = f"gcloud app deploy --quiet --project={ PROJECT_STAGING } "
112112 elif t == "prod" :
113113 cmd = f"gcloud app deploy --project={ PROJECT_PROD } "
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ def xform(c):
228228 link = self ._urls .get (tag )
229229 if link is None or link .filename != curr_filename :
230230 return tag
231- tag + f"{ base_tag } _{ i } "
231+ tag = f"{ base_tag } _{ i } "
232232 i += 1
233233
234234 @staticmethod
You can’t perform that action at this time.
0 commit comments