Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
ignore waiting status for remediation sequences (is an intermediate s…
Browse files Browse the repository at this point in the history
…olution and this will be fixed with #5526)

Signed-off-by: ermin.muratovic <[email protected]>
  • Loading branch information
ermin-muratovic committed Dec 16, 2021
1 parent 3203172 commit 42f066a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bridge/client/app/_models/sequence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,10 @@ export class Sequence extends sq {
}

public isWaiting(): boolean {
if (this.isRemediation()) {
return false;
}

const lastStageName = this.getLastStage();
if (lastStageName && this.state === SequenceState.STARTED) {
const lastStage = this.getStage(lastStageName);
Expand Down

0 comments on commit 42f066a

Please sign in to comment.