We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f1f883 commit 76aa3eaCopy full SHA for 76aa3ea
localstack-core/localstack/services/apigateway/next_gen/execute_api/integrations/http.py
@@ -123,7 +123,7 @@ def invoke(self, context: RestApiInvocationContext) -> EndpointResponse:
123
default_apigw_headers = self._get_default_headers(context)
124
125
multi_value_headers = build_multi_value_headers(invocation_req["headers"])
126
- request_headers = {key: ",".join(value) for key, value in multi_value_headers}
+ request_headers = {key: ",".join(value) for key, value in multi_value_headers.items()}
127
# TODO: check which headers to pop
128
request_headers.pop("Host", None)
129
default_apigw_headers.update(request_headers)
0 commit comments