diff options
author | Brendan Abolivier <babolivier@matrix.org> | 2019-05-31 11:09:34 +0100 |
---|---|---|
committer | Brendan Abolivier <babolivier@matrix.org> | 2019-05-31 11:09:39 +0100 |
commit | 4d794dae210ce30e87d8a6b9ee2f9b481cadf539 (patch) | |
tree | 6723d9e593f48877693cdefb8b3a5453e10ae4be /synapse/storage | |
parent | Sample config (diff) | |
download | synapse-4d794dae210ce30e87d8a6b9ee2f9b481cadf539.tar.xz |
Move delta from +10% to -10%
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/_base.py b/synapse/storage/_base.py index 7f944ec717..086318a530 100644 --- a/synapse/storage/_base.py +++ b/synapse/storage/_base.py @@ -329,7 +329,7 @@ class SQLBaseStore(object): user_id (str): User ID to set an expiration date for. use_delta (bool): If set to False, the expiration date for the user will be now + validity period. If set to True, this expiration date will be a - random value in the [now + period; now + period + d] range, d being a + random value in the [now + period - d ; now + period] range, d being a delta equal to 10% of the validity period. """ now_ms = self._clock.time_msec() @@ -337,8 +337,8 @@ class SQLBaseStore(object): if use_delta: expiration_ts = self.rand.randrange( + expiration_ts - self._account_validity.startup_job_max_delta, expiration_ts, - expiration_ts + self._account_validity.startup_job_max_delta, ) self._simple_insert_txn( |