Skip to content

Commit

Permalink
Updated CDK pipeline and package versions
Browse files Browse the repository at this point in the history
Added 10 min timeout to Upload model to car Step Function
  • Loading branch information
StevenAskwith committed Nov 13, 2024
1 parent 5b7071c commit 91eab17
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/cdk-pipeline-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { DeepracerEventManagerStack } from './drem-app-stack';

// Constants
const NODE_VERSION = '18'; // other possible options: stable, latest, lts
const CDK_VERSION = '2.122.0'; // other possible options: latest
const CDK_VERSION = '2.166.0'; // other possible options: latest
const AMPLIFY_VERSION = '12.8.2';

export interface InfrastructurePipelineStageProps extends cdk.StackProps {
Expand Down
1 change: 1 addition & 0 deletions lib/constructs/models-manager-car-upload-step-function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ export class CarUploadStepFunction extends Construct {
this.stepFunction = new stepFunctions.StateMachine(this, 'CarStatusUpdater', {
definition: definition,
tracingEnabled: true,
timeout: Duration.minutes(10),
/*logs: {
destination: car_status_update_SM_log_group,
level: stepFunctions.LogLevel.ALL,
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"aws-cdk": "2.93.0",
"aws-cdk": "2.122.0",
"eslint": "^8.48.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.0.0",
Expand All @@ -55,8 +55,8 @@
"typescript": "5.2.2"
},
"dependencies": {
"@aws-cdk/aws-lambda-python-alpha": "^2.93.0-alpha.0",
"aws-cdk-lib": "2.93.0",
"@aws-cdk/aws-lambda-python-alpha": "^2.122.0-alpha.0",
"aws-cdk-lib": "2.122.0",
"awscdk-appsync-utils": "^0.0.190",
"cdk-nag": "2.27.111",
"cdk-serverless-clamscan": "^2.5.64",
Expand Down

0 comments on commit 91eab17

Please sign in to comment.