From 1ec8531f501ba1c467b66ca56cd9e774ef28cf94 Mon Sep 17 00:00:00 2001 From: Jacob See <5027680+jacobsee@users.noreply.github.com> Date: Mon, 22 Jun 2026 17:16:08 -0700 Subject: [PATCH] Make early request monitor test informing Early requests have been occurring and have been uncaught due to an event emission error in KAS. Making it informing here (for now) allows us to keep collecting data on it but not block the event emission fix on an actual early request fix (both of which need to happen). --- test/extended/apiserver/graceful_termination.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/extended/apiserver/graceful_termination.go b/test/extended/apiserver/graceful_termination.go index b8fed9362916..55f069f2956e 100644 --- a/test/extended/apiserver/graceful_termination.go +++ b/test/extended/apiserver/graceful_termination.go @@ -11,6 +11,7 @@ import ( g "github.com/onsi/ginkgo/v2" o "github.com/onsi/gomega" + ote "github.com/openshift-eng/openshift-tests-extension/pkg/ginkgo" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes" @@ -151,7 +152,7 @@ var _ = g.Describe("[sig-api-machinery][Feature:APIServer][Late]", func() { } }) - g.It("API LBs follow /readyz of kube-apiserver and don't send request early", func() { + g.It("API LBs follow /readyz of kube-apiserver and don't send request early", ote.Informing(), func() { t := g.GinkgoT() client, err := kubernetes.NewForConfig(oc.AdminConfig())