Skip to content

Commit

Permalink
added more blocking
Browse files Browse the repository at this point in the history
  • Loading branch information
AltamashShaikh committed Jul 11, 2024
1 parent d67b5f2 commit 9318f7d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Commands/ImportReports.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,10 @@ protected function executeImpl() : int
$output->writeln(LogToSingleFileProcessor::$cliOutputPrefix . "Failed to import property entities, aborting.");
return self::FAILURE;
}
$dateRangesToReImport = empty($status['reimport_ranges']) ? [] : $status['reimport_ranges'];

// Disabled reimport of daterange for GA3
// $dateRangesToReImport = empty($status['reimport_ranges']) ? [] : $status['reimport_ranges'];
$dateRangesToReImport = [];
$dateRangesToReImport = array_map(function ($d) {
return [Date::factory($d[0]), Date::factory($d[1])];
}, $dateRangesToReImport);
Expand Down

0 comments on commit 9318f7d

Please sign in to comment.