From fcd5a0ab89bff83668724d409e49bec949fb41c5 Mon Sep 17 00:00:00 2001 From: Kevin Delemme Date: Fri, 11 Oct 2024 15:57:30 -0400 Subject: [PATCH] Increase delay transofrm --- .../apis/observability/slo/helpers/transform.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/test/api_integration/deployment_agnostic/apis/observability/slo/helpers/transform.ts b/x-pack/test/api_integration/deployment_agnostic/apis/observability/slo/helpers/transform.ts index a6a983f439a27..805e113e39eac 100644 --- a/x-pack/test/api_integration/deployment_agnostic/apis/observability/slo/helpers/transform.ts +++ b/x-pack/test/api_integration/deployment_agnostic/apis/observability/slo/helpers/transform.ts @@ -31,7 +31,7 @@ export function createTransformHelper( .timeout(10000) .expect(404); }, - { retryCount: 5, retryDelay: 2000 } + { retryCount: 10, retryDelay: 3000 } ); }, @@ -50,7 +50,7 @@ export function createTransformHelper( .expect(200); return response.body; }, - { retryCount: 5, retryDelay: 2000 } + { retryCount: 10, retryDelay: 3000 } ); }, };