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
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2019-09-03 12:18:33 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2019-09-03 12:18:33 +0300
commit17cc46f0a26e85ce6d3645aa60e0c1ee1611d683 (patch)
treed040247f0ece505435f576822815200c2e4f6499 /plugins/UserCountry
parentbb145dbae3764152e0eeca1d4995a96ee82ef9bf (diff)
Faster raw log data deletion (#14844)
* Faster raw log data deletion * cannot use DB reader with this new performance feature * delete 2K visits at once instead of only 1K * fix index not defined * forgot to commit file
Diffstat (limited to 'plugins/UserCountry')
-rw-r--r--plugins/UserCountry/VisitorGeolocator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserCountry/VisitorGeolocator.php b/plugins/UserCountry/VisitorGeolocator.php
index 3aa52bd3f2..5f992af396 100644
--- a/plugins/UserCountry/VisitorGeolocator.php
+++ b/plugins/UserCountry/VisitorGeolocator.php
@@ -265,7 +265,7 @@ class VisitorGeolocator
$onLogProcessed($row, $updatedValues);
}
}
- });
+ }, $willDelete = false);
}
/**