Skip to content

Commit 616fd7c

Browse files
jvoegelePaul Henrich
authored andcommitted
Replace useage of macro with factory function
1 parent 19c6381 commit 616fd7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{lager, ".*", {git, "git://github.com/basho/lager.git", {tag, "3.2.2"}}},
1313
{ranch, "0.4.0-p1", {git, "git://github.com/basho/ranch.git", {tag, "0.4.0-p1"}}},
1414
{ebloom, ".*", {git, "git://github.com/basho/ebloom.git", {tag, "2.0.0"}}},
15-
{riak_kv, ".*", {git, "git://github.com/basho/riak_kv.git", {tag, "2.1.3"}}},
15+
{riak_kv, ".*", {git, "git://github.com/basho/riak_kv.git", {branch, "develop"}}},
1616
{riak_repl_pb_api, ".*", {git, "[email protected]:basho/riak_repl_pb_api.git", {tag, "2.4.0"}}}
1717
]}.
1818

src/riak_repl_fullsync_worker.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ handle_call({get, B, K, Transport, Socket, Pool, Partition, Ver}, From, State) -
8686

8787
ReqID = make_req_id(),
8888

89-
Req = ?KV_GET_REQ{bkey={B, K}, req_id=ReqID},
89+
Req = riak_kv_requests:new_get_request({B, K}, ReqID),
9090
%% Assuming this function is called from a FSM process
9191
%% so self() == FSM pid
9292
riak_core_vnode_master:command(Preflist,

0 commit comments

Comments
 (0)