Skip to content

Commit

Permalink
DQA-9451: Fix issue with multiple download of virtuoso and solr dumps (
Browse files Browse the repository at this point in the history
  • Loading branch information
joaocsilva authored May 28, 2024
1 parent cf22b51 commit 3a0d25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TaskRunner/Commands/DumpCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private function nextcloudDownloadDump(ConsoleIO $io, array $options)
$tasks = [];
foreach ($services as $service) {
$this->say("Checking service '$service'");
$dump = $tmpFolder . '/' . $service . ($isMydumper ? '.tar' : '.gz');
$dump = $tmpFolder . '/' . $service . ($isMydumper && $service === 'mysql' ? '.tar' : '.gz');
// Check if the dump is already downloaded.
if (!file_exists($dump)) {
$this->say('Starting download');
Expand Down

0 comments on commit 3a0d25c

Please sign in to comment.