From ee5588b91dac91e7afa884cfb6b7ec414c8082f4 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Mon, 18 Aug 2025 18:31:45 -0700 Subject: [PATCH] Remove runtime.Breakpoint call --- internal/debug/shared.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/debug/shared.go b/internal/debug/shared.go index 81acc4e8cb..aa2ff66a27 100644 --- a/internal/debug/shared.go +++ b/internal/debug/shared.go @@ -2,7 +2,6 @@ package debug import ( "fmt" - "runtime" ) func Fail(reason string) { @@ -11,7 +10,7 @@ func Fail(reason string) { } else { reason = "Debug failure. " + reason } - runtime.Breakpoint() + // runtime.Breakpoint() panic(reason) }