diff options
-rw-r--r-- | src/couchdb/couch_rep.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/couchdb/couch_rep.erl b/src/couchdb/couch_rep.erl index b7f87901..0f0613ba 100644 --- a/src/couchdb/couch_rep.erl +++ b/src/couchdb/couch_rep.erl @@ -650,8 +650,7 @@ commit_to_both(Source, Target, RequiredSeq) -> ensure_full_commit(#http_db{} = Target) -> Req = Target#http_db{ resource = "_ensure_full_commit", - method = post, - body = true + method = post }, {ResultProps} = couch_rep_httpc:request(Req), true = proplists:get_value(<<"ok">>, ResultProps), @@ -676,7 +675,6 @@ ensure_full_commit(#http_db{} = Source, RequiredSeq) -> Req = Source#http_db{ resource = "_ensure_full_commit", method = post, - body = true, qs = [{seq, RequiredSeq}] }, {ResultProps} = couch_rep_httpc:request(Req), |