From 3fe6af2bffed96f6c21ce9ec4c835abf3d429606 Mon Sep 17 00:00:00 2001 From: Frikky Date: Tue, 1 Oct 2024 11:52:52 +0200 Subject: [PATCH] Ran more tests towards notification handling with and without swarm --- functions/onprem/orborus/orborus.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/onprem/orborus/orborus.go b/functions/onprem/orborus/orborus.go index bd72b3d9..dee7c159 100755 --- a/functions/onprem/orborus/orborus.go +++ b/functions/onprem/orborus/orborus.go @@ -3318,7 +3318,7 @@ func sendTenzirHealthStatus() error { status = "active" } - log.Printf("[DEBUG] Sending Tenzir health update to backend url '%s'", baseUrl) + //log.Printf("[DEBUG] Sending Tenzir health update to backend url '%s'", baseUrl) forwardMethod := "POST" payload := map[string]interface{}{ "status": status, @@ -3362,7 +3362,7 @@ func sendTenzirHealthStatus() error { defer resp.Body.Close() if resp.StatusCode != 200 { - log.Printf("[ERROR] Pipeline: status for URL %s: %d", url, resp.StatusCode) + //log.Printf("[ERROR] Pipeline: status for URL %s: %d", url, resp.StatusCode) return fmt.Errorf("unexpected HTTP status code: %d", resp.StatusCode) }