From c02693963a586bd331f671545c233e4f4be2cce2 Mon Sep 17 00:00:00 2001 From: Fred Zhang Date: Tue, 21 May 2024 08:36:46 -0700 Subject: [PATCH] wording --- src/dataconnect/schemaMigration.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dataconnect/schemaMigration.ts b/src/dataconnect/schemaMigration.ts index 983f6ecef64..73b1b6a9394 100644 --- a/src/dataconnect/schemaMigration.ts +++ b/src/dataconnect/schemaMigration.ts @@ -273,7 +273,7 @@ async function promptForInvalidConnectorError( !options.nonInteractive && (await confirm({ ...options, - message: "Would you like to delete and recreate these connectors?", + message: `Would you like to delete and recreate these connectors? This will cause ${clc.red(`downtime.`)}.`, })) ) { return true; @@ -296,7 +296,7 @@ function displayInvalidConnectors(invalidConnectors: string[]) { ); logLabeledWarning( "dataconnect", - `This is a ${clc.red("breaking")} change and will cause a brief downtime.`, + `This is a ${clc.red("breaking")} change and may break existing apps.`, ); }