undo typos

This commit is contained in:
Daniel Roth 2026-02-17 11:55:57 +00:00
parent 0763c04e4e
commit f834d9497e
2 changed files with 2 additions and 3 deletions

View file

@ -36,7 +36,7 @@ COPY datatypes/ datatypes/
COPY backend/app/db/connection.py backend/app/db/connection.py
COPY backdend/app/config.py backend/app/config.py
COPY backend/app/config.py backend/app/config.py
COPY backend/__init__.py backend/__init__.py
COPY backend/app/__init__.py backend/app/__init__.py

View file

@ -12,7 +12,6 @@ logger = setup_logger()
def handler(event: Mapping[str, Any], context: Any) -> None:
process_portfolio(556)
for record in event.get("Records", []):
try:
body_dict = json.loads(record["body"])
@ -21,7 +20,7 @@ def handler(event: Mapping[str, Any], context: Any) -> None:
logger.debug("Successfully validated request body")
# process_portfolio(payload.portfolio_id)
process_portfolio(payload.portfolio_id)
except Exception as e:
logger.error(f"Failed to process record: {e}")