Skip to content

Commit

Permalink
Merge pull request #64 from diagridio/filinto/increase-increase-check…
Browse files Browse the repository at this point in the history
…-appid

increase retry to 12 times to be 2m total
  • Loading branch information
filintod authored Nov 3, 2024
2 parents 53167d2 + 20c1ce8 commit cbb3daa
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion invocation/csharp/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion invocation/java/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion invocation/javascript/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion invocation/python/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion pubsub/csharp/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def create_subscription(project_name, subscription_name, topic_name, route):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion pubsub/java/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def create_subscription(project_name, subscription_name, topic_name, route):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion pubsub/javascript/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def create_subscription(project_name, subscription_name, topic_name, route):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion pubsub/python/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def create_subscription(project_name, subscription_name, topic_name, route):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion state/csharp/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion state/java/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion state/javascript/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion state/python/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion workflow/csharp/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion workflow/java/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion workflow/javascript/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down
2 changes: 1 addition & 1 deletion workflow/python/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def create_appid(project_name, appid_name):
sys.exit(1)

def check_appid_status(project_name, appid_name):
max_attempts = 8
max_attempts = 12
attempt = 1
last_status = None

Expand Down

0 comments on commit cbb3daa

Please sign in to comment.