diff options
-rw-r--r-- | src/couchdb/couch_rep.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/couchdb/couch_rep.erl b/src/couchdb/couch_rep.erl index c0010a94..6e58ccbc 100644 --- a/src/couchdb/couch_rep.erl +++ b/src/couchdb/couch_rep.erl @@ -453,8 +453,9 @@ make_replication_id({Props}, UserCtx) -> Tgt = get_rep_endpoint(UserCtx, proplists:get_value(<<"target">>, Props)), Filter = proplists:get_value(<<"filter">>, Props), QueryParams = proplists:get_value(<<"query_params">>, Props), + DocIds = proplists:get_value(<<"doc_ids">>, Props), Base = couch_util:to_hex(erlang:md5( - term_to_binary([HostName, Src, Tgt, Filter, QueryParams]) + term_to_binary([HostName, Src, Tgt, Filter, QueryParams, DocIds]) )), Extension = maybe_append_options( [<<"continuous">>, <<"create_target">>], Props), |