From fbae9f859ff60e0beeca93b43944f267fdc2be33 Mon Sep 17 00:00:00 2001 From: shimon Date: Tue, 15 Aug 2023 10:42:14 +0300 Subject: [PATCH] container id fix --- src/Appwrite/Platform/Tasks/Backup.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Appwrite/Platform/Tasks/Backup.php b/src/Appwrite/Platform/Tasks/Backup.php index d1d066c00f..961f0526f9 100644 --- a/src/Appwrite/Platform/Tasks/Backup.php +++ b/src/Appwrite/Platform/Tasks/Backup.php @@ -56,6 +56,9 @@ class Backup extends Action Console::exit(); } + console::info('Trying to connect to ' . $this->dsn->getHost() . ':' . $this->dsn->getPort() . + 'user:' . $this->dsn->getUser() . 'password:' . $this->dsn->getPassword()); + try { $dsn = new DSN(App::getEnv('_APP_CONNECTIONS_BACKUPS_STORAGE', '')); $this->s3 = new DOSpaces('/' . $database . '/full', $dsn->getUser(), $dsn->getPassword(), $dsn->getPath(), $dsn->getParam('region'));