Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBen Burgess <88810029+bx80@users.noreply.github.com>2022-01-12 19:30:28 +0300
committerGitHub <noreply@github.com>2022-01-12 19:30:28 +0300
commitfe255ed247035b2deaadd058cbbaf041a92d3ad7 (patch)
tree891394fea541fe9205e237606a8c926efc298f07 /core
parent7681fc048731fc6f11ea410ca0f260d532870fe8 (diff)
Change rearchive end date from yesterday to today (#18523)
* Change archive invalidator default end date from yesterday to today * Integration test fixes * Increased group_concat_max_length for Archive Invalidator test to prevent test failing
Diffstat (limited to 'core')
-rw-r--r--core/Archive/ArchiveInvalidator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Archive/ArchiveInvalidator.php b/core/Archive/ArchiveInvalidator.php
index e7c83cf7db..1dacecfcbe 100644
--- a/core/Archive/ArchiveInvalidator.php
+++ b/core/Archive/ArchiveInvalidator.php
@@ -457,7 +457,7 @@ class ArchiveInvalidator
*/
public function reArchiveReport($idSites, string $plugin = null, string $report = null, Date $startDate = null, Segment $segment = null)
{
- $date2 = Date::yesterday();
+ $date2 = Date::today();
$earliestDateToRearchive = $this->getEarliestDateToRearchive();
if (empty($startDate)) {