feat(infrastructure): use correct url
Some checks are pending
Deploy Prod / Run Python Tests (push) Waiting to run
Deploy Prod / Build and push image (reusable) (push) Blocked by required conditions
Deploy Prod / Generate Production URLs (push) Blocked by required conditions
Deploy Prod / Frontend - Build and Deploy to Cloudflare Pages (prod) (push) Blocked by required conditions
Deploy Prod / Helm upgrade/install (prod) (push) Blocked by required conditions

This commit is contained in:
2025-11-12 01:11:53 +01:00
parent d57dd82a64
commit 573404dead

View File

@@ -56,7 +56,7 @@ def _load_mock_bank_transactions(user_id: UUID) -> None:
transactions = []
with httpx.Client() as client:
response = client.get(f"{os.getenv("APP_POD_URL")}/mock-bank/scrape")
response = client.get(f"{os.getenv('APP_POD_URL')}/mock-bank/scrape")
if response.status_code != httpx.codes.OK:
return
for transaction in response.json():