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
@@ -142,11 +142,11 @@ export async function promptForUnsafeMigration(
142
142
.map((eu)=>eu.endpoint)
143
143
.sort(backend.compareFunctions)
144
144
.map(getFunctionLabel)
145
-
.join(", "),
145
+
.join(", ")
146
146
)+
147
147
". "+
148
148
"While automatic migration is allowed for these functions, updating the underlying event type may result in data loss. "+
149
-
"To avoid this, consider the best practices outlined in the migration guide: [TODO: link]";
149
+
"To avoid this, consider the best practices outlined in the migration guide: https://firebase.google.com/docs/functions/manage-functions?gen=2nd#modify-trigger";
150
150
151
151
utils.logLabeledWarning("functions",warnMessage);
152
152
@@ -155,7 +155,7 @@ export async function promptForUnsafeMigration(
155
155
if(options.nonInteractive){
156
156
utils.logLabeledWarning(
157
157
"functions",
158
-
"Aborting updates for functions that may be unsafe to update. To update these functions anyway, deploy again in interactive mode or use the --force option.",
158
+
"Skipping updates for functions that may be unsafe to update. To update these functions anyway, deploy again in interactive mode or use the --force option."
159
159
);
160
160
returnsafeUpdates;
161
161
}
@@ -166,7 +166,7 @@ export async function promptForUnsafeMigration(
166
166
name: "confirm",
167
167
default: false,
168
168
message: `[${getFunctionLabel(
169
-
eu.endpoint,
169
+
eu.endpoint
170
170
)}] Would you like to proceed with the unsafe migration?`,
0 commit comments