Skip to content

Commit 401825c

Browse files
authored
Merge pull request #222 from matomo-org/fix-merge-issue
Fix merge issue
2 parents 5933b12 + 5f2c362 commit 401825c

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22

3+
5.0.2
4+
- Fix merge issue in previous release
5+
36
5.0.1
47
- Compatibility with Matomo 5.0.0-b4
58

Queue/Processor/Handler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public function process(Tracker $tracker, RequestSet $requestSet)
6464
// Since the config should only be enabled during debugging, we should be alright using plain text
6565
$message .= "\nFailed request set:\n" . json_encode($requestSet->getState());
6666
}
67-
// TODO - Switch this to use \Piwik\Log\LoggerInterface for Matomo 5 release
68-
StaticContainer::get(\Psr\Log\LoggerInterface::class)->warning($message);
67+
68+
StaticContainer::get(\Piwik\Log\LoggerInterface::class)->warning($message);
6969

7070
// Wrap any throwables so that they are caught by the try/catch in Processor, which is expecting Exceptions
7171
throw ($th instanceof \Exception ? $th : new \Exception($th->getMessage(), $th->getCode(), $th));

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "QueuedTracking",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "Scale your large traffic Matomo service by queuing tracking requests in Redis or MySQL for better performance and reliability when experiencing peaks.",
55
"theme": false,
66
"keywords": ["tracker", "tracking", "queue", "redis"],

0 commit comments

Comments
 (0)