Updated Branches: refs/heads/COUCHDB-1534 [created] 835b57b19
Disable checking for string query_params values Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/835b57b1 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/835b57b1 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/835b57b1 Branch: refs/heads/COUCHDB-1534 Commit: 835b57b196d423ae5132a559e727031521da8ce9 Parents: 53490d9 Author: Jason Smith (work) <[email protected]> Authored: Tue Sep 4 06:35:52 2012 +0000 Committer: Jason Smith (air) <[email protected]> Committed: Fri Sep 14 09:02:04 2012 +0700 ---------------------------------------------------------------------- src/couchdb/couch_httpd_replicator.erl | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/835b57b1/src/couchdb/couch_httpd_replicator.erl ---------------------------------------------------------------------- diff --git a/src/couchdb/couch_httpd_replicator.erl b/src/couchdb/couch_httpd_replicator.erl index fb1e350..47de476 100644 --- a/src/couchdb/couch_httpd_replicator.erl +++ b/src/couchdb/couch_httpd_replicator.erl @@ -58,8 +58,10 @@ validate_rep_props([]) -> validate_rep_props([{<<"query_params">>, {Params}}|Rest]) -> lists:foreach(fun ({_,V}) when is_binary(V) -> ok; - ({K,_}) -> throw({bad_request, - <<K/binary," value must be a string.">>}) + % Disabled to support the iris-monitor replicator + %({K,_}) -> throw({bad_request, + % <<K/binary," value must be a string.">>}) + ({K,_}) -> ok end, Params), validate_rep_props(Rest); validate_rep_props([_|Rest]) ->
