This is an automated email from the ASF dual-hosted git repository.
squakez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new e343a73f0 chore(e2e): higher timeout
e343a73f0 is described below
commit e343a73f06dc73762c364290a85e6c1bb77e713c
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Tue Aug 11 09:15:44 2026 +0200
chore(e2e): higher timeout
---
e2e/common/traits/service_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/e2e/common/traits/service_test.go
b/e2e/common/traits/service_test.go
index fd16152cd..0c9854c18 100644
--- a/e2e/common/traits/service_test.go
+++ b/e2e/common/traits/service_test.go
@@ -118,7 +118,7 @@ func TestPortsServiceTrait(t *testing.T) {
"-t", "service.ports=hello;85;8085",
"--name", name,
).Execute()).To(Succeed())
- g.Eventually(IntegrationConditionStatus(t, ctx, ns,
name, v1.IntegrationConditionReady)).
+ g.Eventually(IntegrationConditionStatus(t, ctx, ns,
name, v1.IntegrationConditionReady), TestTimeoutMedium).
Should(Equal(corev1.ConditionTrue))
// We cannot use the health trait to make sure the
application is ready to
// get requests as we're sharing the service port.