From 897b3afcdb8a7ca782c18c17caf0a5599882b505 Mon Sep 17 00:00:00 2001 From: Josua Bryner <16536859+josi19@users.noreply.github.com> Date: Tue, 23 Apr 2024 14:22:39 +0200 Subject: [PATCH] use minutes instead of seconds --- create/mysql.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create/mysql.go b/create/mysql.go index da529d8..8903d34 100644 --- a/create/mysql.go +++ b/create/mysql.go @@ -34,7 +34,7 @@ type mySQLCmd struct { TransactionIsolation storage.MySQLTransactionCharacteristic `placeholder:"${mysql_transaction_isolation}" help:"Configures the transaction_isolation variable."` KeepDailyBackups *int `placeholder:"${mysql_backup_retention_days}" help:"Number of daily database backups to keep. Note that setting this to 0, backup will be disabled and existing dumps deleted immediately."` Wait bool `default:"true" help:"Wait until MySQL instance is created."` - WaitTimeout time.Duration `default:"1500s" help:"Duration to wait for MySQL getting ready. Only relevant if --wait is set."` + WaitTimeout time.Duration `default:"25m" help:"Duration to wait for MySQL getting ready. Only relevant if --wait is set."` } func (cmd *mySQLCmd) Run(ctx context.Context, client *api.Client) error {