Missing RPC methods cause admin UI errors (redis.select, redis.keys, etc.) #9
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Description
After the refactor to a pure-proxy _http crate, the admin UI calls several
RPC methods that the _openrpc backend never implemented, causing:
[-32601] Method not found: redis.select
Methods missing from hero_redis_openrpc dispatcher:
Additionally, the flushDatabase flow calls select→exec(FLUSHDB)→select(0)
as three separate HTTP requests. Since each request creates a fresh
stateless session, the SELECT does not persist and FLUSHDB always runs
on DB 0 instead of the target database.
Should be fixed