You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!is_array($datesToImport) || count($datesToImport) != 2) {
205
218
$output->writeln(LogToSingleFileProcessor::$cliOutputPrefix . "Found broken entry in date ranges to import (entry #{$index}) with improper type, skipping.");
@@ -218,7 +231,9 @@ protected function executeImpl() : int
218
231
if (!empty($lastDateImported) && $isFutureDateImport) {
$output->writeln(LogToSingleFileProcessor::$cliOutputPrefix . "Importing reports for date range {$startDate} - {$endDate} from GA property {$property}.");
if ($date->isToday() || $date->isLater(Date::yesterday())) {
320
324
$this->logger->info("Encountered Future Date while Importing data for GA4 Property {propertyID} for date {date}, the import would be stopped", ['viewId' => $propertyId, 'date' => $date->toString()]);
@@ -328,7 +332,7 @@ public function import($idSite, $propertyId, Date $start, Date $end, Lock $lock,
328
332
// force delete all tables in case they aren't all freed
0 commit comments