From 870599f5da26977bf5a8e04bd5221f12d5af9907 Mon Sep 17 00:00:00 2001 From: Parth Sareen Date: Fri, 13 Mar 2026 15:01:38 -0700 Subject: [PATCH] launch: remove warning for default policy (#14830) --- cmd/launch/launch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/launch/launch.go b/cmd/launch/launch.go index 8d22c785f..398e66286 100644 --- a/cmd/launch/launch.go +++ b/cmd/launch/launch.go @@ -313,9 +313,9 @@ func LaunchIntegration(ctx context.Context, req IntegrationLaunchRequest) error } var policy LaunchPolicy + // TUI does not set a policy, whereas ollama launch does as it can have flags which change the behavior if req.Policy == nil { policy = defaultLaunchPolicy(isInteractiveSession(), false) - fmt.Fprintln(os.Stderr, "Launch policy not found from request, using default") } else { policy = *req.Policy }