Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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}]`;
}
}