From dff36be7451a6e0b2862f270aaca2707b5feffae Mon Sep 17 00:00:00 2001 From: JoukoVirtanen Date: Mon, 20 Oct 2025 10:19:23 -0700 Subject: [PATCH 1/3] X-Smart-Branch-Parent: release-3.22 From ad09d72ce834956ab3c1fba142ac49a6df2d818f Mon Sep 17 00:00:00 2001 From: JoukoVirtanen Date: Mon, 20 Oct 2025 10:19:39 -0700 Subject: [PATCH 2/3] Empty commit From 7abeadff66aba59eb9db764768bcc7ae5f1678fc Mon Sep 17 00:00:00 2001 From: JoukoVirtanen Date: Mon, 20 Oct 2025 10:20:40 -0700 Subject: [PATCH 3/3] Logging in assert --- integration-tests/pkg/assert/assert.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/pkg/assert/assert.go b/integration-tests/pkg/assert/assert.go index ff8c869860..2ea8c8554c 100644 --- a/integration-tests/pkg/assert/assert.go +++ b/integration-tests/pkg/assert/assert.go @@ -39,6 +39,8 @@ func AssertNoRuntimeConfig(t *testing.T, collectorIP string) { AssertRepeated(t, tickTime, timeout, runtimeConfigErrorMsg, func() bool { body, err := collector.IntrospectionQuery(collectorIP, "/state/runtime-config") assert.NoError(t, err) + fmt.Println("body: ") + fmt.Println(strings.TrimSpace(string(body))) return strings.TrimSpace(string(body)) == "{}" }) }