From befab0f8d123deb21ac93da7580f0099363a6fc7 Mon Sep 17 00:00:00 2001 From: Owen Date: Fri, 7 Nov 2025 14:33:52 -0800 Subject: [PATCH] Fix passing original arguments Former-commit-id: 7e5b7405149b89ac78c273f1358c04f3b506f767 --- olm/olm.go | 1 + 1 file changed, 1 insertion(+) diff --git a/olm/olm.go b/olm/olm.go index 474e968..89a2166 100644 --- a/olm/olm.go +++ b/olm/olm.go @@ -149,6 +149,7 @@ func Run(ctx context.Context, config Config) { // If we have credentials and no tunnel is running, start it if id != "" && secret != "" && endpoint != "" && !tunnelRunning { logger.Info("Starting tunnel process with initial credentials") + tunnelRunning = true go TunnelProcess(ctx, config, id, secret, endpoint) } else if id == "" || secret == "" || endpoint == "" { // If we don't have credentials, check if API is enabled