Skip to content

Commit 0037257

Browse files
author
Brett Hazen
authored
Merge pull request basho#337 from basho/fix-az-remove_allow_qbuf_reuse
drop the disused allow_qbuf_reuse flag
2 parents 33b2696 + 0410022 commit 0037257

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/riakc_ts.erl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,8 @@
8282

8383
query_common(Pid, Query, Interpolations, Cover, Options)
8484
when is_pid(Pid) ->
85-
AllowQBufReuse = (true == proplists:get_value(allow_qbuf_reuse, Options)),
8685
Msg0 = riakc_ts_query_operator:serialize(Query, Interpolations),
87-
Msg1 = Msg0#tsqueryreq{cover_context = Cover,
88-
allow_qbuf_reuse = AllowQBufReuse},
86+
Msg1 = Msg0#tsqueryreq{cover_context = Cover},
8987
Msg = {Msg1, {msgopts, Options}},
9088
Response = server_call(Pid, Msg),
9189
riakc_ts_query_operator:deserialize(Response,

0 commit comments

Comments
 (0)