Skip to content

Commit

Permalink
Fix drctl replication pause
Browse files Browse the repository at this point in the history
Issue: ZENKO-4903
  • Loading branch information
KillianG committed Oct 4, 2024
1 parent a9b51da commit a169989
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions tests/ctst/steps/dr/drctl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,8 @@ type ReplicationPauseConfig = {
sourceKubeconfigData?: string;
sinkKubeconfigPath?: string;
sinkKubeconfigData?: string;
sourceZenkoInstance?: string;
sourceZenkoNamespace?: string;
sinkZenkoInstance?: string;
sinkZenkoNamespace?: string;
sourceZenkoDrNamespace?: string;
sinkZenkoDrNamespace?: string;
sourceZenkoDrInstance?: string;
sinkZenkoDrInstance?: string;
wait?: boolean;
Expand Down
4 changes: 2 additions & 2 deletions tests/ctst/steps/pra.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,8 +348,8 @@ When('I pause the DR', { timeout: pauseTimeout + 2000 }, async function (this: Z
await this.zenkoDrCtl?.replicationPause({
sourceZenkoDrInstance: 'end2end-source',
sinkZenkoDrInstance: 'end2end-pra-sink',
sinkZenkoNamespace: 'default',
sourceZenkoNamespace: 'default',
sinkZenkoDrNamespace: 'default',
sourceZenkoDrNamespace: 'default',
wait: true,
timeout: `${pauseTimeout.toString()}ms`,
});
Expand Down

0 comments on commit a169989

Please sign in to comment.