From 3a53be36e1bbf9da66708da64988a1ee2ad38e46 Mon Sep 17 00:00:00 2001 From: Alexander Rashed Date: Mon, 22 Apr 2024 08:53:19 +0200 Subject: [PATCH] switch default gateway server from hypercorn to twisted --- localstack/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localstack/config.py b/localstack/config.py index cf91238316afa..c98a9f6f8d264 100644 --- a/localstack/config.py +++ b/localstack/config.py @@ -658,7 +658,7 @@ def populate_edge_configuration( GATEWAY_WORKER_COUNT = int(os.environ.get("GATEWAY_WORKER_COUNT") or 1000) # the gateway server that should be used (supported: hypercorn, twisted dev: werkzeug) -GATEWAY_SERVER = os.environ.get("GATEWAY_SERVER", "").strip() or "hypercorn" +GATEWAY_SERVER = os.environ.get("GATEWAY_SERVER", "").strip() or "twisted" # IP of the docker bridge used to enable access between containers DOCKER_BRIDGE_IP = os.environ.get("DOCKER_BRIDGE_IP", "").strip()