Skip to content

Commit 50f1307

Browse files
committed
Add 'period' to prefilter attributes for deep-dive
1 parent 55df523 commit 50f1307

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/patterns/@aws-solutions-constructs/core/lib/override-warning-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function flagOverriddenDefaults(defaultProps: object, userProps: object)
4444
* 'Argument to Intrinsic must be a plain value object', so such props are excluded from the diff check.
4545
*/
4646
function _prefilter(_path: any[], _key: string): boolean {
47-
const prefilters = ['maxRecordAge', 'expiration', 'transitionAfter', 'destination', 'timeout'];
47+
const prefilters = ['maxRecordAge', 'expiration', 'transitionAfter', 'destination', 'timeout', 'period'];
4848

4949
if (prefilters.indexOf(_key) >= 0) {
5050
return true;

0 commit comments

Comments
 (0)