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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-09-30 17:17:18 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2020-10-01 09:54:35 +0300
commit0c7c358d134e4f12b18364f23e32b991176dabc1 (patch)
tree0f88f633c0074857d3418b4f086489aaf4144631 /apps
parentaeb7329b3db0b1cbfa41bdedf9bccb230a3910d8 (diff)
Increase the timeout of statuses
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/user_status/lib/Service/StatusService.php2
-rw-r--r--apps/user_status/tests/Unit/BackgroundJob/ClearOldStatusesBackgroundJobTest.php2
-rw-r--r--apps/user_status/tests/Unit/Service/StatusServiceTest.php4
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/user_status/lib/Service/StatusService.php b/apps/user_status/lib/Service/StatusService.php
index 85368342b25..39edad35850 100644
--- a/apps/user_status/lib/Service/StatusService.php
+++ b/apps/user_status/lib/Service/StatusService.php
@@ -77,7 +77,7 @@ class StatusService {
];
/** @var int */
- public const INVALIDATE_STATUS_THRESHOLD = 5 /* minutes */ * 60 /* seconds */;
+ public const INVALIDATE_STATUS_THRESHOLD = 15 /* minutes */ * 60 /* seconds */;
/** @var int */
public const MAXIMUM_MESSAGE_LENGTH = 80;
diff --git a/apps/user_status/tests/Unit/BackgroundJob/ClearOldStatusesBackgroundJobTest.php b/apps/user_status/tests/Unit/BackgroundJob/ClearOldStatusesBackgroundJobTest.php
index ccb649ecce3..682151a3f5d 100644
--- a/apps/user_status/tests/Unit/BackgroundJob/ClearOldStatusesBackgroundJobTest.php
+++ b/apps/user_status/tests/Unit/BackgroundJob/ClearOldStatusesBackgroundJobTest.php
@@ -56,7 +56,7 @@ class ClearOldStatusesBackgroundJobTest extends TestCase {
->with(1337);
$this->mapper->expects($this->once())
->method('clearStatusesOlderThan')
- ->with(1037, 1337);
+ ->with(437, 1337);
$this->time->method('getTime')
->willReturn(1337);
diff --git a/apps/user_status/tests/Unit/Service/StatusServiceTest.php b/apps/user_status/tests/Unit/Service/StatusServiceTest.php
index 4f47070e7c1..1e61f5b09ca 100644
--- a/apps/user_status/tests/Unit/Service/StatusServiceTest.php
+++ b/apps/user_status/tests/Unit/Service/StatusServiceTest.php
@@ -152,7 +152,7 @@ class StatusServiceTest extends TestCase {
$status->setIsUserDefined(true);
$this->timeFactory->method('getTime')
- ->willReturn(1400);
+ ->willReturn(2600);
$this->mapper->expects($this->once())
->method('findByUserId')
->with('john.doe')
@@ -160,7 +160,7 @@ class StatusServiceTest extends TestCase {
$this->assertEquals($status, $this->service->findByUserId('john.doe'));
$this->assertEquals('offline', $status->getStatus());
- $this->assertEquals(1400, $status->getStatusTimestamp());
+ $this->assertEquals(2600, $status->getStatusTimestamp());
$this->assertFalse($status->getIsUserDefined());
}