From d29bba9ed9e70e236a22e3259338cad5575ff00d Mon Sep 17 00:00:00 2001 From: Daniel Tafoya Date: Fri, 13 Dec 2024 15:32:25 -0500 Subject: [PATCH] Fix wrong port --- comp/process/apiserver/apiserver_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comp/process/apiserver/apiserver_test.go b/comp/process/apiserver/apiserver_test.go index f64401e8a48a9..22fe85b807ca6 100644 --- a/comp/process/apiserver/apiserver_test.go +++ b/comp/process/apiserver/apiserver_test.go @@ -49,7 +49,7 @@ func TestLifecycle(t *testing.T) { )) assert.Eventually(t, func() bool { - res, err := http.Get("http://localhost:6162/config") + res, err := http.Get("http://localhost:43424/config") if err != nil { return false }