From d5b8c62fac95593fbfb46e71869aa05529e9771f Mon Sep 17 00:00:00 2001 From: Joel Wong Date: Tue, 28 Mar 2023 11:38:39 -0500 Subject: [PATCH] fix: update Deadline version to 10.2 in the SEP example (#1021) Also remove a config validation that wasn't providing value --- .../deadline/All-In-AWS-Infrastructure-SEP/ts/bin/app.ts | 8 -------- .../All-In-AWS-Infrastructure-SEP/ts/package.json | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/bin/app.ts b/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/bin/app.ts index f1dbb9fba..1ce5ed722 100644 --- a/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/bin/app.ts +++ b/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/bin/app.ts @@ -12,14 +12,6 @@ import * as cdk from 'aws-cdk-lib'; import { SEPStack } from '../lib/sep-stack'; import { config } from './config'; -// ------------------------------ // -// --- Validate Config Values --- // -// ------------------------------ // - -if (config.deadlineClientLinuxAmiMap === {['region']: 'ami-id'}) { - throw new Error('Deadline Client Linux AMI map is required but was not specified.'); -} - // ------------------- // // --- Application --- // // ------------------- // diff --git a/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/package.json b/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/package.json index 44bc01068..bd9e7f5cb 100644 --- a/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/package.json +++ b/examples/deadline/All-In-AWS-Infrastructure-SEP/ts/package.json @@ -5,7 +5,7 @@ "app": "bin/app.js" }, "config": { - "deadline_ver": "10.1", + "deadline_ver": "10.2", "stage_path": "stage" }, "scripts": {