Skip to content

Commit dff72ae

Browse files
authored
Merge pull request #20 from VanOns/bugfix/VOOS-91
[VOOS-91] Bugfix: Add option to skip SSL for local database
2 parents 3cdeb02 + 95c1e2a commit dff72ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/ImportEnvironmentCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ protected function getDatabaseDumpClient(bool $local = false): MySql
352352
if ($dbType === 'mysql'
353353
&& (
354354
(!$local && $this->getEnvironmentConfigValue('db_skip_ssl', false))
355-
|| ($local && $this->getEnvironmentConfigValue('skip_ssl_local', false))
355+
|| ($local && $this->getConfigValue('skip_ssl_local', false))
356356
)
357357
) {
358358
$client->setSkipSsl();

0 commit comments

Comments
 (0)