Merge pull request #153 from nextcloud/fix/peak-detection-last-hour-count

Fix peak detection message
This commit is contained in:
Roeland Jago Douma 2019-09-11 10:54:38 +02:00 коммит произвёл GitHub
Родитель 05098f6558 fb40e25fda
Коммит a5764b4fc0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -172,7 +172,7 @@ class LoginClassifier {
$lastHour = count($this->mapper->findRecentByUid($uid, $now - 60 * 60));
if ($lastHour > 3) {
$this->logger->warning("Suspicious login peak detected: $uid received $lastTwoDays alerts in the last hour");
$this->logger->warning("Suspicious login peak detected: $uid received $lastHour alerts in the last hour");
return;
}