From c4450ec9c0d4de101b01d008bcbd36287400922c Mon Sep 17 00:00:00 2001 From: Warren Burke Date: Wed, 13 Dec 2023 11:36:32 +0000 Subject: [PATCH] update no work to do validation error check --- src/lib/cloudformationutils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cloudformationutils.ts b/src/lib/cloudformationutils.ts index 118282ad..06bc8f76 100644 --- a/src/lib/cloudformationutils.ts +++ b/src/lib/cloudformationutils.ts @@ -162,7 +162,7 @@ export async function testChangeSetExists( // a no-op. export function isNoWorkToDoValidationError(errCodeOrStatus?: string, errMessage?: string): boolean { const knownNoOpErrorMessages = [ - /^No updates are to be performed./, + /No updates are to be performed./, /^The submitted information didn't contain changes./ ]