From 2197b45629ac157f213e0bf743d6928d6b3633cf Mon Sep 17 00:00:00 2001 From: Jarvis Date: Wed, 25 Feb 2026 16:20:25 -0600 Subject: [PATCH] test(agentic): batch probe #18 (panic) --- internal/handler/agentic_probe_batch_18.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 internal/handler/agentic_probe_batch_18.go diff --git a/internal/handler/agentic_probe_batch_18.go b/internal/handler/agentic_probe_batch_18.go new file mode 100644 index 0000000..99447ba --- /dev/null +++ b/internal/handler/agentic_probe_batch_18.go @@ -0,0 +1,13 @@ +package handler + +import ( + "context" + "net/http" + "time" +) + +func AgenticProbeBatch18(w http.ResponseWriter, r *http.Request) error { + _ = context.Background() + go func() { time.Sleep(50 * time.Millisecond) }() + panic("request failed") +}