diff options
author | Jorge Florian <jorge.floriannoriega@aiven.io> | 2022-04-08 12:10:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-08 10:10:58 +0000 |
commit | 78e4d96a4d3f6e3d5419e3eb75cc693ac3b40def (patch) | |
tree | 0b922d30159005c26a76ce735fb161ac192d544f /docker | |
parent | Fix rejecting invites over federation (#12409) (diff) | |
download | synapse-78e4d96a4d3f6e3d5419e3eb75cc693ac3b40def.tar.xz |
Add missing type definitions for scripts in docker folder (#12280)
Signed-off-by: Jorge Florian <jafn28@gmail.com>
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/configure_workers_and_start.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docker/configure_workers_and_start.py b/docker/configure_workers_and_start.py index adbb551cee..4d5e94ad6f 100755 --- a/docker/configure_workers_and_start.py +++ b/docker/configure_workers_and_start.py @@ -29,6 +29,7 @@ import os import subprocess import sys +from typing import Any, Dict, Set import jinja2 import yaml @@ -36,7 +37,7 @@ import yaml MAIN_PROCESS_HTTP_LISTENER_PORT = 8080 -WORKERS_CONFIG = { +WORKERS_CONFIG: Dict[str, Dict[str, Any]] = { "pusher": { "app": "synapse.app.pusher", "listener_resources": [], @@ -355,7 +356,7 @@ def generate_worker_files(environ, config_path: str, data_dir: str): # worker_type: {1234, 1235, ...}} # } # and will be used to construct 'upstream' nginx directives. - nginx_upstreams = {} + nginx_upstreams: Dict[str, Set[int]] = {} # A map of: {"endpoint": "upstream"}, where "upstream" is a str representing what will be # placed after the proxy_pass directive. The main benefit to representing this data as a @@ -384,7 +385,7 @@ def generate_worker_files(environ, config_path: str, data_dir: str): # A counter of worker_type -> int. Used for determining the name for a given # worker type when generating its config file, as each worker's name is just # worker_type + instance # - worker_type_counter = {} + worker_type_counter: Dict[str, int] = {} # For each worker type specified by the user, create config values for worker_type in worker_types: @@ -404,7 +405,7 @@ def generate_worker_files(environ, config_path: str, data_dir: str): # e.g. federation_reader1 worker_name = worker_type + str(new_worker_count) worker_config.update( - {"name": worker_name, "port": worker_port, "config_path": config_path} + {"name": worker_name, "port": str(worker_port), "config_path": config_path} ) # Update the shared config with any worker-type specific options |