From 156e5b78f8652fcb5e02bf5fce50b09e5c4d3c4b Mon Sep 17 00:00:00 2001 From: Aveline <352441+ym@users.noreply.github.com> Date: Fri, 20 Jun 2025 14:06:55 +0200 Subject: [PATCH] Update native.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- native.go | 1 + 1 file changed, 1 insertion(+) diff --git a/native.go b/native.go index c524420..92e2d02 100644 --- a/native.go +++ b/native.go @@ -327,6 +327,7 @@ func ExtractAndRunNativeBin() error { err := superviseNativeBinary(binaryPath) if err != nil { nativeLogger.Warn().Err(err).Msg("failed to supervise native binary") + time.Sleep(1 * time.Second) // Add a short delay to prevent rapid successive calls } } }