Skip to content

Commit

Permalink
Correct order for error
Browse files Browse the repository at this point in the history
  • Loading branch information
AgentIsai authored Sep 24, 2024
1 parent ab50eed commit 5f6d4da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/Jobs/DataDumpGenerateJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ private function setStatus( string $status, $dbw, string $directoryBackend, stri
$fname
);
$dbw->commit( __METHOD__, 'flush' );
}

$this->log( User::newSystemUser( 'Maintenance script' ), 'generate-failed', $fileName, 'Failed with the following error:' . $comment );
$this->log( User::newSystemUser( 'Maintenance script' ), 'generate-failed', $fileName, 'Failed with the following error:' . $comment );
}

return true;
}
Expand Down

0 comments on commit 5f6d4da

Please sign in to comment.