From b9e645927010099f83ab0e02f6a0ac4e20200dda Mon Sep 17 00:00:00 2001 From: ko_oler <kooler89@gmail.com> Date: Fri, 8 Dec 2023 14:50:58 +0300 Subject: [PATCH] =?UTF-8?q?=D1=83=D0=B1=D1=80=D0=B0=D0=BD=20=D0=BB=D0=B8?= =?UTF-8?q?=D1=88=D0=BD=D0=B8=D0=B9=20=D0=BA=D0=BE=D0=BC=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D1=82=D0=B0=D1=80=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/spaces/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/spaces/service.go b/pkg/spaces/service.go index a4341d2b..520d8cd9 100644 --- a/pkg/spaces/service.go +++ b/pkg/spaces/service.go @@ -90,7 +90,7 @@ func WaitSpaceAvailable(ctx context.Context, svc Spaces, spaceID string, logger logger.Warn("Space not available", zap.String("spaceID", spaceID), zap.Uint("Retry", n), zap.Error(err)) }), retry.Delay(500*time.Millisecond), - retry.Attempts(1800), // 900s == 900 000 + retry.Attempts(1800), retry.Context(ctx), ) } -- GitLab