Skip to content
This repository has been archived by the owner on Oct 24, 2020. It is now read-only.

Commit

Permalink
fix: bump wait for cluster ready from 10 to 30 minutes
Browse files Browse the repository at this point in the history
20 minutes is probably enough for large clusters: let's overshoot that
to play it safe

and attempt to clarify check_for_cluster_done's display name

fixes #71
  • Loading branch information
pjenvey committed May 11, 2017
1 parent 6522580 commit a23115b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ stepFunctions:
ErrorEquals:
- ServicesStartingException
IntervalSeconds: 10
MaxAttempts: 60
MaxAttempts: 180
BackoffRate: 1
Catch:
-
Expand All @@ -206,7 +206,7 @@ stepFunctions:
"Check for Cluster Done":
Type: Task
Resource: check_for_cluster_done
Next: "Wait for new Cluster Check"
Next: "Wait for Cluster Done"
Retry:
-
ErrorEquals:
Expand All @@ -220,7 +220,7 @@ stepFunctions:
- States.ALL
ResultPath: "$.error-info"
Next: "Clean-up Cluster"
"Wait for new Cluster Check":
"Wait for Cluster Done":
Type: Wait
Seconds: 10
Next: "Check for Cluster Done"
Expand Down

0 comments on commit a23115b

Please sign in to comment.