Skip to content

Commit 129b76a

Browse files
committed
[BUGFIX] Ignore SSL for mysqldump
Resolves: #43
1 parent 860cbe2 commit 129b76a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/Utility/DatabaseUtility.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ public static function getTemporaryMyCnfFile(
9292
$content .= "port=\"" . ((isset($dbConfig['port']) && $dbConfig['port']) ? $dbConfig['port'] : 3306) . "\"\n";
9393
$content .= "user=\"{$dbConfig['user']}\"\n";
9494
$content .= "password=\"{$dbConfig['password']}\"\n";
95+
$content .= "ssl=false\n";
9596
file_put_contents($tmpMyCnfFile, $content);
9697

9798
return $tmpMyCnfFile;

0 commit comments

Comments
 (0)