We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using the riak_ensemble_client API, {error, timeout} is returned instead of something like {error, no_such_ensemble}. An example is below.
riak_ensemble_client
{error, timeout}
{error, no_such_ensemble}
%% ensemble2 and root2 do not exist (dev1@127.0.0.1)49> riak_ensemble_client:kput_once(ensemble1, somekey, someval, 1000). {ok,{obj,1,2855,somekey,someval}} (dev1@127.0.0.1)48> riak_ensemble_client:kput_once(ensemble2, somekey, someval, 1000). {error,timeout} (dev1@127.0.0.1)53> riak_ensemble_client:kget(root, somekey, 1000). {ok,{obj,2,82552,somekey,dsomeval}} (dev1@127.0.0.1)54> riak_ensemble_client:kget(root2, somekey, 1000). {error,timeout}
The text was updated successfully, but these errors were encountered:
Moving to 2.0.1 It's not critical, and there are other errors we should be more specific on as well.
Sorry, something went wrong.
Note that clients need to understand any new errors, hence the punt
No branches or pull requests
When using the
riak_ensemble_client
API,{error, timeout}
is returned instead of something like{error, no_such_ensemble}
. An example is below.The text was updated successfully, but these errors were encountered: