We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d062347 commit 090d5dcCopy full SHA for 090d5dc
src/riak_repl_pb_get.erl
@@ -68,7 +68,7 @@ process(#rpbreplgetclusteridreq{}, State) ->
68
ClusterId = lists:flatten(
69
io_lib:format("~p", [riak_core_ring:cluster_name(Ring)])),
70
lager:debug("Repl PB: returning cluster id ~p", [ClusterId]),
71
- {reply, #rpbreplgetclusteridresp{cluster_id = ClusterId}, State};
+ {reply, #rpbreplgetclusteridresp{cluster_id = list_to_binary(ClusterId)}, State};
72
%% @doc Return Key/Value pair, derived from the KV version
73
process(#rpbreplgetreq{bucket=B, key=K, r=R0, pr=PR0, notfound_ok=NFOk,
74
basic_quorum=BQ, if_modified=VClock,
0 commit comments