summaryrefslogtreecommitdiff
path: root/synapse/app/_base.py
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2021-12-14 17:36:00 +0100
committerAndrej Shadura <andrewsh@debian.org>2021-12-14 17:36:00 +0100
commite894f36b081e694a99c1829d05a2382edd8c4533 (patch)
tree094399067207ada06f538d472bf44b608e984cac /synapse/app/_base.py
parent7eba982950257d89142cd5a793320be25c5d669a (diff)
New upstream version 1.49.0
Diffstat (limited to 'synapse/app/_base.py')
-rw-r--r--synapse/app/_base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/app/_base.py b/synapse/app/_base.py
index 807ee3d4..5fc59c1b 100644
--- a/synapse/app/_base.py
+++ b/synapse/app/_base.py
@@ -32,6 +32,7 @@ from typing import (
Iterable,
List,
NoReturn,
+ Optional,
Tuple,
cast,
)
@@ -129,7 +130,7 @@ def start_worker_reactor(
def start_reactor(
appname: str,
soft_file_limit: int,
- gc_thresholds: Tuple[int, int, int],
+ gc_thresholds: Optional[Tuple[int, int, int]],
pid_file: str,
daemonize: bool,
print_pidfile: bool,