You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
get the latest version of rkv source code (commit de9428e), build and start rkv server; seemingly fine; however trying to curl curl http://127.0.0.1:8090/kv?key=a gets back unexpected response curl: (7) Failed to connect to 127.0.0.1 port 8090: Connection refused
The expected response is rev not found, since there is no such key yet
This seems a regression. Reverting back to prior commit, the curl gets response mvcc: Revision not found
The text was updated successfully, but these errors were encountered:
I am also seeing this issue for consistency validation (sequential). Redis was deployed as backend. It affects the returned value (logged as 'nil' for some operations). Not sure if we have a workaround for this.
Btw, for consistency validation (linearizability) I did not see this issue (although used an older code version). But I am not sure if this is caused by sync/async configuration or recent code update.
get the latest version of rkv source code (commit de9428e), build and start rkv server; seemingly fine; however trying to curl
curl http://127.0.0.1:8090/kv?key=a
gets back unexpected responsecurl: (7) Failed to connect to 127.0.0.1 port 8090: Connection refused
The expected response is
rev not found
, since there is no such key yetThis seems a regression. Reverting back to prior commit, the curl gets response
mvcc: Revision not found
The text was updated successfully, but these errors were encountered: