From 813f42f825188701bc72b96a4f548bccd6b3521e Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Tue, 28 Apr 2026 16:22:34 +0200 Subject: [PATCH] Revert "Fix timeout for ocwrapper" This reverts commit 193431b87569a7a373d071023ce44cdee6497b27. --- opencloud/cmd/opencloud/main.go | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/opencloud/cmd/opencloud/main.go b/opencloud/cmd/opencloud/main.go index 4b2d7a29f9..c80d4aca9c 100644 --- a/opencloud/cmd/opencloud/main.go +++ b/opencloud/cmd/opencloud/main.go @@ -16,9 +16,7 @@ func main() { // INFO: this is a hotfix, we need to replace suture and wait for nats to // gracefully shutdown using rungroups // see https://github.com/opencloud-eu/opencloud/issues/2282 - if os.Getenv("TEST_SERVER_URL") == "" { - fmt.Println("Waiting for 30 seconds before exiting...") - time.Sleep(30 * time.Second) - fmt.Println("Exiting...") - } + fmt.Println("Waiting for 30 seconds before exiting...") + time.Sleep(30 * time.Second) + fmt.Println("Exiting...") }