Skip to content

Commit

Permalink
Merge pull request #22 from WeareJH/fix-upload-cron
Browse files Browse the repository at this point in the history
default fullDump to false to address issues with cron
  • Loading branch information
JamelleG committed Apr 16, 2024
2 parents 4de9787 + 7cf7752 commit 2a413de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Model/Db/DbDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public function __construct(
* @param bool $fullDump
* @throws \Exception
*/
public function dumpDb(ProjectMeta $projectMeta, bool $fullDump): void
public function dumpDb(ProjectMeta $projectMeta, bool $fullDump = false): void
{
$hostName = $this->config->getLocalDbConfigData(ConfigOptionsListConstants::KEY_HOST);
$dbName = $this->config->getLocalDbConfigData(ConfigOptionsListConstants::KEY_NAME);
Expand Down
2 changes: 1 addition & 1 deletion src/Model/DbFacade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function __construct(
/**
* @throws \Exception
*/
public function dumpDatabase(ProjectMeta $projectMeta, bool $fullDump): void
public function dumpDatabase(ProjectMeta $projectMeta, bool $fullDump = false): void
{
$this->dumper->dumpDb($projectMeta, $fullDump);
}
Expand Down

0 comments on commit 2a413de

Please sign in to comment.