Skip to content

Commit 908117b

Browse files
authored
fix(FR-2910): include FAILED_TO_START status in terminated replica filter (#7457)
1 parent 1902adc commit 908117b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

react/src/components/DeploymentReplicasTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import { graphql, useFragment, useLazyLoadQuery } from 'react-relay';
4343

4444
type ReplicaStatusCategory = 'running' | 'terminated';
4545

46-
const TERMINATED_STATUSES = ['TERMINATED'] as const;
46+
const TERMINATED_STATUSES = ['TERMINATED', 'FAILED_TO_START'] as const;
4747

4848
const buildStatusFilter = (category: ReplicaStatusCategory) =>
4949
category === 'terminated'

0 commit comments

Comments
 (0)