From 73f5320823f8e8efc887ad74d33d9aff32bcfacb Mon Sep 17 00:00:00 2001 From: Yusuke Sakurai Date: Wed, 26 Jun 2024 14:42:16 +0900 Subject: [PATCH] fix: restore default wait timeout for task/service stable into 5s to 15s --- cage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cage.go b/cage.go index ee01f01..ceb2a86 100644 --- a/cage.go +++ b/cage.go @@ -46,6 +46,6 @@ func NewCage(input *Input) Cage { Alb: input.ALB, Ec2: input.EC2, Time: input.Time, - MaxWait: 5 * time.Minute, + MaxWait: 15 * time.Minute, } }