Token not found
Code
AUTH/TOKEN_NOT_FOUND
What it means
The server expects an existing token record (e.g. in Redis) for this address/session, but cannot find it.
When it happens
- The auth token record cannot be found in storage (e.g. Redis).
Typical scenarios:
- Token expired / TTL elapsed
- Token was never created (skipped route fetch step)
- Redis outage or wrong key namespace
How to handle
- Treat as unauthenticated (
401) and require re-authentication. - Client should fetch a fresh world route/token and reconnect.
Last updated on