From 01f90f6c02883690b11224da488d2a462004631e Mon Sep 17 00:00:00 2001 From: KillianG Date: Mon, 19 Aug 2024 09:19:12 +0200 Subject: [PATCH] Do not wait in install command but after Issue: ZENKO-4775 --- tests/ctst/steps/dr/drctl.ts | 2 ++ tests/ctst/steps/pra.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/tests/ctst/steps/dr/drctl.ts b/tests/ctst/steps/dr/drctl.ts index 10004488b4..cbc8dded87 100644 --- a/tests/ctst/steps/dr/drctl.ts +++ b/tests/ctst/steps/dr/drctl.ts @@ -42,6 +42,8 @@ type InstallConfig = { sinkSs3AccessKeyField?: string; sinkS3SecretKeyField?: string; sinkS3Region?: string; + + wait?: boolean; }; type BootstrapDumpConfig = { diff --git a/tests/ctst/steps/pra.ts b/tests/ctst/steps/pra.ts index e55bf6e4c9..a3b5f75cd9 100644 --- a/tests/ctst/steps/pra.ts +++ b/tests/ctst/steps/pra.ts @@ -66,6 +66,7 @@ async function installPRA(world: Zenko, sinkS3Endpoint = 'http://s3.zenko.local' sourceZenkoInstance: 'end2end', sourceZenkoNamespace: 'default', sourceS3Endpoint: 'http://s3.zenko.local', + wait: false, sinkS3Endpoint, ...kafkaExternalIpOption, });