Skip to content

Commit d84ec1f

Browse files
Merge pull request #17 from Real-Life-IaC/add-dlq
Merge add-dlq
2 parents d3bfd60 + c70b4ac commit d84ec1f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

functions/email_service/code/event_handler.py

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ async def process(parsed_event: EventBridgeEvent) -> None:
2222
"""Process events."""
2323

2424
async with get_eventbridge_context() as eventbridge, get_ses_context() as ses, get_session_context() as session:
25-
2625
book_request_repo = BookRequestRepo(eventbridge=eventbridge, ses=ses)
2726
mailing_repo = MailingRepo(eventbridge=eventbridge, session=session)
2827

infra/constructs/b1/api_gateway.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def __init__(
124124
)
125125

126126
self.cors_options = apigwv2.CorsPreflightOptions(
127-
allow_origins=[f"https://{self.hosted_zone.zone_name}", *cors_origins],
127+
allow_origins=[f"https://{self.hosted_zone.zone_name}", f"https://www.{self.hosted_zone.zone_name}", *cors_origins],
128128
allow_methods=[apigwv2.CorsHttpMethod.ANY],
129129
allow_headers=["*"],
130130
allow_credentials=True,

0 commit comments

Comments
 (0)