From 415c7a3f6fe0bb3f0f5f3e6f9eb6194b6030a77d Mon Sep 17 00:00:00 2001 From: daved Date: Mon, 30 Jan 2023 16:30:34 -0800 Subject: [PATCH] Improve executor svc msg err text for CI only --- cmd/state-exec/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/state-exec/main.go b/cmd/state-exec/main.go index ff85e0495b..47c375daa3 100644 --- a/cmd/state-exec/main.go +++ b/cmd/state-exec/main.go @@ -88,7 +88,7 @@ func run() error { logr.Debug(" sock - error: %v", err) if onCI() { // halt control flow on CI only - return fmt.Errorf("cannot send message to service: %w", err) + return fmt.Errorf("cannot send message to service (this error is handled in CI only): %w", err) } }