We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6acae63 commit f3825f8Copy full SHA for f3825f8
CHANGELOG.md
@@ -0,0 +1 @@
1
+- Changed artifact registry cleanup policy error to warn for CI/CD workloads #8513
src/deploy/functions/release/index.ts
@@ -196,7 +196,8 @@ async function setupArtifactCleanupPolicies(
196
`${locationsWithErrors.join(", ")}.` +
197
"This could result in a small monthly bill as container images accumulate over time.",
198
);
199
- throw new FirebaseError(
+ utils.logLabeledWarning(
200
+ "functions",
201
`Functions successfully deployed but could not set up cleanup policy in ` +
202
`${locationsWithErrors.length > 1 ? "regions" : "region"} ${locationsWithErrors.join(", ")}. ` +
203
`Pass the --force option to automatically set up a cleanup policy or ` +
0 commit comments