From 057e87083b80e8ef3af34ceb3e8cd603fe958ee4 Mon Sep 17 00:00:00 2001 From: Frikky Date: Tue, 10 Feb 2026 11:50:22 +0100 Subject: [PATCH] Print fixes --- functions/onprem/orborus/orborus.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/onprem/orborus/orborus.go b/functions/onprem/orborus/orborus.go index 79ec9d0b..d34174e2 100755 --- a/functions/onprem/orborus/orborus.go +++ b/functions/onprem/orborus/orborus.go @@ -3684,11 +3684,11 @@ func updatePipelineState(command, pipelineId, action string) (string, error) { forwardData, ) if err != nil { - log.Printf("[ERROR] Failed to create HTTP request: %s", err) + log.Printf("[ERROR] Failed to update HTTP request: %s", err) return "", err } - req.Header.Set("Content-Type", "application/json") + req.Header.Set("Content-Type", "application/json") client := &http.Client{Timeout: 10 * time.Second} resp, err := client.Do(req) if err != nil { @@ -3740,7 +3740,7 @@ func deletePipeline(pipelineId string) error { forwardData, ) if err != nil { - log.Printf("[ERROR] Failed to create HTTP request: %s", err) + log.Printf("[ERROR] Failed to delete HTTP request: %s", err) return err } req.Header.Set("Content-Type", "application/json")