From 260dfc33c08e7e0de4e6c0cbf615da2993b113cd Mon Sep 17 00:00:00 2001 From: Max Schmeling Date: Wed, 22 Nov 2023 12:31:42 -0600 Subject: [PATCH] Fix database backup URL in error message --- src/commands/export-sql.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/export-sql.js b/src/commands/export-sql.js index e196fc06b..944ef90c2 100644 --- a/src/commands/export-sql.js +++ b/src/commands/export-sql.js @@ -391,7 +391,7 @@ export class ExportSQLCommand { } ); exit.withError( 'There is an export job already running for this environment: ' + - `https://dashboard.wpvip.com/apps/${ this.app.id }/${ this.env.uniqueLabel }/data/database/backups\n` + + `https://dashboard.wpvip.com/apps/${ this.app.id }/${ this.env.uniqueLabel }/database/backups\n` + 'Currently, we allow only one export job at a time, per site. Please try again later.' ); } else {