-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
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
Fixup az post ttb and develop merge #277
Conversation
@@ -46,6 +46,8 @@ deserialize({error, {Code, Message}}) when is_integer(Code), is_atom(Message) -> | |||
{error, {Code, iolist_to_binary(atom_to_list(Message))}}; | |||
deserialize({error, Message}) -> | |||
{error, Message}; | |||
deserialize(tsgetresp) -> | |||
{ok, {[], []}}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed. Sorry I didn't see your PR in time (it had taken me a good hour to arrive at the same conclusion).
Testing manually works fine. Build errors:
|
But you need basho/riak_pb#190 (that is, the branch in it). |
That's from buildbot, not my machine. Too bad we don't have a better way to specify deps. Anyway, +1 e8272aa |
e8272aa
to
bff6899
Compare
👍 bff6899 |
@borshop merge |
Relates to basho/riak_kv#1382, requires basho/riak_pb#190.
Contains a fix for the case of
riakc_ts:get
returning an empty set, where the client connection is broken with an error message implicating 'tsgetresp'.Also, properly decode the error message of
get_coverage
(previously, this was done in riak_kv_ts_svc, which is not the right place for assembling#ts...
records since this module now serves PB as well as TTB messages).