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
Found that when building CDK with maxConcurrentCount set, the setting does not get passed to the template that gets created. It sets the maxConcurrentCount as null instead.
It looks like neither maxConcurrentCount nor failureToleranceCount are actually being utilized from this interface. Only failureTolerancePercentage/maxConcurrentPercentage are used to synthesize the StackSet template
Confirmed this not to be working. For those looking for a workaround:
constcfnStackSet=stackSet.node.defaultChild;// stackSet is the instance of the cdk-stacksets classassert(cfnStackSetinstanceofCfnStackSet);// type narrowcfnStackSet.operationPreferences={// now you have access to these options};
Found that when building CDK with maxConcurrentCount set, the setting does not get passed to the template that gets created. It sets the maxConcurrentCount as null instead.
Expected: MaxConccurentCount is set to 1000
Actual Result: MaxConccurentCount set to null
The text was updated successfully, but these errors were encountered: