From a23115b8bc20f4e7b44ef4bf78b3687069ea1253 Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Thu, 11 May 2017 14:59:49 -0700 Subject: [PATCH] fix: bump wait for cluster ready from 10 to 30 minutes 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 --- serverless.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/serverless.yml b/serverless.yml index a2ad525..fb36ddf 100644 --- a/serverless.yml +++ b/serverless.yml @@ -184,7 +184,7 @@ stepFunctions: ErrorEquals: - ServicesStartingException IntervalSeconds: 10 - MaxAttempts: 60 + MaxAttempts: 180 BackoffRate: 1 Catch: - @@ -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: @@ -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"