We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 44b2686 + 9d4a465 commit a44f929Copy full SHA for a44f929
src/Commands/ImportEnvironmentCommand.php
@@ -350,8 +350,8 @@ protected function getDatabaseDumpClient(bool $local = false): MySql
350
->setPort($port)
351
->setDumpBinaryPath($this->getConfigValue('db_dump_binary_path', '/usr/bin'));
352
353
- // Allow skipping SSL when connecting to database, only supported by MySQL.
354
- if ($dbType === 'mysql'
+ // Allow skipping SSL when connecting to database, only supported by MySQL & MariaDB.
+ if (($dbType === 'mysql' || $dbType === 'mariadb')
355
&& (
356
(!$local && $this->getEnvironmentConfigValue('db_skip_ssl', false))
357
|| ($local && $this->getConfigValue('skip_ssl_local', false))
0 commit comments