fix: add Origin header to login test in deploy.py

This commit is contained in:
Agent Zero
2026-08-01 21:23:52 +02:00
parent b3f40bacd2
commit a922408e49
+1
View File
@@ -371,6 +371,7 @@ def verify_login() -> StepResult:
resp = httpx.post(
url,
json={"email": LOGIN_EMAIL, "password": LOGIN_PASSWORD},
headers={"Origin": APP_DOMAIN},
timeout=30,
follow_redirects=True,
)