From 56a5f8d48c981168daad85b19cce1aa9409d39af Mon Sep 17 00:00:00 2001 From: poimen Date: Tue, 8 Sep 2026 16:25:26 -0700 Subject: [PATCH] fix: use Printf instead of Println for formatted output Line 101: fmt.Println with %d directive changed to fmt.Printf. Println doesn't interpret format directives; Printf required for %d. Fixes go vet error. --- cmd/workflow-runner/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/workflow-runner/main.go b/cmd/workflow-runner/main.go index 4ba467f..1dae153 100644 --- a/cmd/workflow-runner/main.go +++ b/cmd/workflow-runner/main.go @@ -98,7 +98,7 @@ func main() { fmt.Println(sep) // Execution history explanation - fmt.Println("\nšŸ“œ EXECUTION HISTORY (%d events)") + fmt.Printf("\nšŸ“œ EXECUTION HISTORY (%d events)\n", descResp.WorkflowExecutionInfo.HistoryLength) fmt.Println(sep) historyLength := descResp.WorkflowExecutionInfo.HistoryLength