Skip to content

Commit 10cab48

Browse files
authored
switch default gateway server from hypercorn to twisted (localstack#10703)
1 parent 0da9865 commit 10cab48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

localstack/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ def populate_edge_configuration(
658658
GATEWAY_WORKER_COUNT = int(os.environ.get("GATEWAY_WORKER_COUNT") or 1000)
659659

660660
# the gateway server that should be used (supported: hypercorn, twisted dev: werkzeug)
661-
GATEWAY_SERVER = os.environ.get("GATEWAY_SERVER", "").strip() or "hypercorn"
661+
GATEWAY_SERVER = os.environ.get("GATEWAY_SERVER", "").strip() or "twisted"
662662

663663
# IP of the docker bridge used to enable access between containers
664664
DOCKER_BRIDGE_IP = os.environ.get("DOCKER_BRIDGE_IP", "").strip()

0 commit comments

Comments
 (0)