From 95a9b7ef0513eb656b875d9b956518ec84d1c973 Mon Sep 17 00:00:00 2001 From: Lincoln Wallace Date: Thu, 25 Sep 2025 11:14:35 -0300 Subject: [PATCH] fix(run_server.py): help text for max_connection_time argument The help text for `--max_connection_time` is incorrect. Looks like a copy-paste mistake from `--cache_path`. --- run_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_server.py b/run_server.py index ed61bc8..387574e 100644 --- a/run_server.py +++ b/run_server.py @@ -38,7 +38,7 @@ if __name__ == "__main__": parser.add_argument('--max_connection_time', type=int, default=300, - help='Path to cache the converted ctranslate2 models.') + help='The maximum duration (in seconds) a client can stay connected. Defaults to 300 seconds (5 minutes)') parser.add_argument('--cache_path', '-c', type=str, default="~/.cache/whisper-live/",