Skip to content
This repository has been archived by the owner on Jan 31, 2024. It is now read-only.

Commit

Permalink
fix(stopTimeout): adding in stop timeout options (#1097)
Browse files Browse the repository at this point in the history
  • Loading branch information
bassrock authored Jan 24, 2024
1 parent 7c6a882 commit 2641cfe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/base/ApplicationECSContainerDefinition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export interface ApplicationECSContainerDefinitionProps {
entryPoint?: string[];
essential?: boolean;
ulimits?: Ulimit[];
stopTimeout?: number;
}

export function buildDefinitionJSON(
Expand Down Expand Up @@ -108,7 +109,7 @@ export function buildDefinitionJSON(
memory: null,
memoryReservation: config.memoryReservation ?? null,
volumesFrom: [],
stopTimeout: null,
stopTimeout: config.stopTimeout ?? null,
image: config.containerImage,
startTimeout: null,
firelensConfiguration: null,
Expand Down

0 comments on commit 2641cfe

Please sign in to comment.