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..a35abfc2b 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 @@ -16,7 +16,7 @@ import { config } from './config'; // --- Validate Config Values --- // // ------------------------------ // -if (config.deadlineClientLinuxAmiMap === {['region']: 'ami-id'}) { +if (JSON.stringify(config.deadlineClientLinuxAmiMap) === JSON.stringify({['region']: 'ami-id'})) { throw new Error('Deadline Client Linux AMI map is required but was not specified.'); } 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": {