From e52fe3b2fb2c99f09e4281c61de16cdbda4c2ea2 Mon Sep 17 00:00:00 2001 From: Jon Huhn Date: Thu, 5 Mar 2026 16:38:24 -0600 Subject: [PATCH] Use HTTP GET for Node log queries in e2e logcheck --- test/e2e/invariants/logcheck/logcheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/invariants/logcheck/logcheck.go b/test/e2e/invariants/logcheck/logcheck.go index dcdaca9a03f..c691c7aeefa 100644 --- a/test/e2e/invariants/logcheck/logcheck.go +++ b/test/e2e/invariants/logcheck/logcheck.go @@ -616,7 +616,7 @@ func kubeletLogQuery(ctx context.Context, cs kubernetes.Interface, wg *waitGroup // output would be worse because then the end marker of a DATA RACE // report could be missed. since = now - req := cs.CoreV1().RESTClient().Post(). + req := cs.CoreV1().RESTClient().Get(). Resource("nodes"). Name(nodeName). SubResource("proxy").