From cd9eff5331578e68299310bade39043b218e78d7 Mon Sep 17 00:00:00 2001 From: Zoltan Papp Date: Mon, 10 Mar 2025 18:23:47 +0100 Subject: [PATCH] Increase the timeout to 50 sec (#3481) --- client/server/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/server/server.go b/client/server/server.go index b112a994f..2d8f759cd 100644 --- a/client/server/server.go +++ b/client/server/server.go @@ -628,7 +628,7 @@ func (s *Server) Up(callerCtx context.Context, _ *proto.UpRequest) (*proto.UpRes s.statusRecorder.UpdateManagementAddress(s.config.ManagementURL.String()) s.statusRecorder.UpdateRosenpass(s.config.RosenpassEnabled, s.config.RosenpassPermissive) - timeoutCtx, cancel := context.WithTimeout(callerCtx, 10*time.Second) + timeoutCtx, cancel := context.WithTimeout(callerCtx, 50*time.Second) defer cancel() runningChan := make(chan struct{}, 1) // buffered channel to do not lose the signal