The baked-in beta FE baseURL is: https://beta.chatbackend.aimloperations.com/api/
That hostname no longer resolves (DNS failure). The live backend is: https://beta.backend.hesychia.ai/ (admin works).
Expected
Beta FE should call:
REST: https://beta.backend.hesychia.ai/api/
WS: wss://beta.backend.hesychia.ai/ws/chat_again/
Fix
Update llm-fe/.env.beta and redeploy beta FE so the built bundle picks up the new hosts.
Notes
Django CORS/ALLOWED_HOSTS already include https://beta.hesychia.ai / beta.backend.hesychia.ai. This is a frontend env cutover issue, not auth credentials.
## Problem
Login on https://beta.hesychia.ai fails with Axios `ERR_NETWORK` when posting to `/token/obtain/`.
The baked-in beta FE `baseURL` is:
`https://beta.chatbackend.aimloperations.com/api/`
That hostname no longer resolves (DNS failure). The live backend is:
`https://beta.backend.hesychia.ai/` (admin works).
## Expected
Beta FE should call:
- REST: `https://beta.backend.hesychia.ai/api/`
- WS: `wss://beta.backend.hesychia.ai/ws/chat_again/`
## Fix
Update `llm-fe/.env.beta` and redeploy beta FE so the built bundle picks up the new hosts.
## Notes
Django CORS/ALLOWED_HOSTS already include `https://beta.hesychia.ai` / `beta.backend.hesychia.ai`. This is a frontend env cutover issue, not auth credentials.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Problem
Login on https://beta.hesychia.ai fails with Axios
ERR_NETWORKwhen posting to/token/obtain/.The baked-in beta FE
baseURLis:https://beta.chatbackend.aimloperations.com/api/That hostname no longer resolves (DNS failure). The live backend is:
https://beta.backend.hesychia.ai/(admin works).Expected
Beta FE should call:
https://beta.backend.hesychia.ai/api/wss://beta.backend.hesychia.ai/ws/chat_again/Fix
Update
llm-fe/.env.betaand redeploy beta FE so the built bundle picks up the new hosts.Notes
Django CORS/ALLOWED_HOSTS already include
https://beta.hesychia.ai/beta.backend.hesychia.ai. This is a frontend env cutover issue, not auth credentials.