From 8641ce350be05a86780b99c02a28e966b9470bde Mon Sep 17 00:00:00 2001 From: Justin Wilaby Date: Tue, 11 Feb 2025 16:00:28 -0800 Subject: [PATCH] fix(W-17544106): pg:wait command addon not found warning --- packages/cli/src/commands/pg/wait.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/commands/pg/wait.ts b/packages/cli/src/commands/pg/wait.ts index ce198bdecb..b0b36bb1b7 100644 --- a/packages/cli/src/commands/pg/wait.ts +++ b/packages/cli/src/commands/pg/wait.ts @@ -39,6 +39,7 @@ export default class Wait extends Command { let status let waiting = false let retries = 20 + const notFoundMessage = 'Waiting for provisioning to start...' while (true) { try { @@ -51,7 +52,7 @@ export default class Wait extends Command { pgDebug(httpError) if (!retries || httpError.statusCode !== 404) throw httpError retries-- - status = {'waiting?': true} + status = {'waiting?': true, message: notFoundMessage} } if (status['error?']) {