Skip to content

Commit

Permalink
Merge branch 'main' into 27449_codepipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Dec 18, 2023
2 parents 1734baa + 3e6f10d commit 6f514a8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/aws-cdk-lib/core/lib/annotations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ export class Annotations {
private addMessage(level: string, message: string) {
const isNew = !this.scope.node.metadata.find((x) => x.data === message);
if (isNew) {
this.scope.node.addMetadata(level, message, { stackTrace: this.stackTraces });
let normalizedMessage = typeof message === 'string' ? message : JSON.stringify(message);
this.scope.node.addMetadata(level, normalizedMessage, { stackTrace: this.stackTraces });
}
}
}
Expand Down Expand Up @@ -259,4 +260,4 @@ function removeWarning(construct: IConstruct, id: string) {

function ackTag(id: string) {
return `[ack: ${id}]`;
}
}

0 comments on commit 6f514a8

Please sign in to comment.