Skip to content

Commit

Permalink
switch default gateway server from hypercorn to twisted (#10703)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrashed committed May 2, 2024
1 parent 0da9865 commit 10cab48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion localstack/config.py
Expand Up @@ -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()
Expand Down

0 comments on commit 10cab48

Please sign in to comment.