summary refs log tree commit diff
path: root/synapse/storage/databases/main/registration.py
diff options
context:
space:
mode:
authorDan Callahan <danc@element.io>2021-05-14 10:59:10 +0100
committerGitHub <noreply@github.com>2021-05-14 10:59:10 +0100
commit52ed9655edf8849d68a178e1c76040c79824a353 (patch)
tree162265349e646c1e94fadc997dc6b10bb9de8205 /synapse/storage/databases/main/registration.py
parentRemove superfluous call to bool() (#9986) (diff)
downloadsynapse-52ed9655edf8849d68a178e1c76040c79824a353.tar.xz
Remove unnecessary SystemRandom from SQLBaseStore (#9987)
It's not obvious that instances of SQLBaseStore each need their own
instances of random.SystemRandom(); let's just use random directly.

Introduced by 52839886d664576831462e033b88e5aba4c019e3

Signed-off-by: Dan Callahan <danc@element.io>
Diffstat (limited to '')
-rw-r--r--synapse/storage/databases/main/registration.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/storage/databases/main/registration.py b/synapse/storage/databases/main/registration.py
index 6e5ee557d2..e5c5cf8ff0 100644
--- a/synapse/storage/databases/main/registration.py
+++ b/synapse/storage/databases/main/registration.py
@@ -14,6 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 import logging
+import random
 import re
 from typing import TYPE_CHECKING, Any, Dict, List, Optional, Tuple, Union
 
@@ -997,7 +998,7 @@ class RegistrationWorkerStore(CacheInvalidationWorkerStore):
         expiration_ts = now_ms + self._account_validity_period
 
         if use_delta:
-            expiration_ts = self.rand.randrange(
+            expiration_ts = random.randrange(
                 expiration_ts - self._account_validity_startup_job_max_delta,
                 expiration_ts,
             )