Skip to content

Commit f3da548

Browse files
committed
fix stack
1 parent d456f56 commit f3da548

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

infra/stack.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,10 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
9191

9292
async_lambda_integration = apigateway.LambdaIntegration(
9393
browserbase_lambda,
94-
proxy=True,
95-
integration_responses=[
96-
apigateway.IntegrationResponse(
97-
status_code="202",
98-
)
99-
],
94+
proxy=False,
10095
request_parameters={
10196
'integration.request.header.X-Amz-Invocation-Type': "'Event'"
102-
},
97+
}
10398
)
10499

105100
getter_lambda_integration = apigateway.LambdaIntegration(

0 commit comments

Comments
 (0)