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
fix(cli): "cdk flags" message writes to stderr unconditionally (#790)
This ignores our rules for avoiding writing to `stderr` in CI
environments. Use the IoHost instead.
Also update the message to include the use of the unstable flag.
---
By submitting this pull request, I confirm that my contribution is made
under the terms of the Apache-2.0 license
process.stderr.write(`You currently have ${numUnconfigured}unconfigured feature flag(s) that may require attention to keep your application up-to-date. Run 'cdk flags' to learn more.`);
2122
+
awaitioHost.defaults.warn(`${numUnconfigured} feature flags are not configured. Run 'cdk --unstable=flags flags' to learn more.`);
0 commit comments