You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the StackSet and StackSetStack are nested in a construct, the StackSet will not have a dependency set on the AssetBucketDeployment, as the StackSetStack places the deployment in the scope of its parent stack, but the StackSet checks for the children of its current scope: https://github.com/cdklabs/cdk-stacksets/blob/main/src/stackset.ts#L662-L666
Minimal Reproduction:
If the
StackSet
andStackSetStack
are nested in a construct, theStackSet
will not have a dependency set on theAssetBucketDeployment
, as theStackSetStack
places the deployment in the scope of its parent stack, but the StackSet checks for the children of its current scope: https://github.com/cdklabs/cdk-stacksets/blob/main/src/stackset.ts#L662-L666Minimal Reproduction:
Potential Fix:
Though it is probably better to pass a reference to the AssetBucketDeployment instead of relying on assumptions about the construct tree.
The text was updated successfully, but these errors were encountered: