You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by mi...@apache.org on 2015/06/05 18:02:00 UTC

[1/2] fabric commit: updated refs/heads/merge-diff-from-cloudant-fork to dd2a27b

Repository: couchdb-fabric
Updated Branches:
  refs/heads/merge-diff-from-cloudant-fork 9f2f143eb -> dd2a27b99


[squash] More s/proplists/couch_util/


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/commit/1ed02009
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/tree/1ed02009
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/diff/1ed02009

Branch: refs/heads/merge-diff-from-cloudant-fork
Commit: 1ed02009d6d6da7efd7227985b38f5d25eb4fabe
Parents: 9f2f143
Author: Mike Wallace <mi...@apache.org>
Authored: Fri Jun 5 16:59:16 2015 +0100
Committer: Mike Wallace <mi...@apache.org>
Committed: Fri Jun 5 16:59:19 2015 +0100

----------------------------------------------------------------------
 src/fabric_doc_open.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fabric/blob/1ed02009/src/fabric_doc_open.erl
----------------------------------------------------------------------
diff --git a/src/fabric_doc_open.erl b/src/fabric_doc_open.erl
index 1607946..ac3cbdb 100644
--- a/src/fabric_doc_open.erl
+++ b/src/fabric_doc_open.erl
@@ -30,7 +30,7 @@
 
 
 go(DbName, Id, Options) ->
-    Handler = case proplists:get_value(doc_info, Options) of
+    Handler = case couch_util:get_value(doc_info, Options) of
     true -> get_doc_info;
     full -> get_full_doc_info;
     undefined -> open_doc


[2/2] fabric commit: updated refs/heads/merge-diff-from-cloudant-fork to dd2a27b

Posted by mi...@apache.org.
Module-wide s/proplists:get_value/couch_util:get_value/


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/commit/dd2a27b9
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/tree/dd2a27b9
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/diff/dd2a27b9

Branch: refs/heads/merge-diff-from-cloudant-fork
Commit: dd2a27b99d4a39669a6cbe37bf9a50a01fd9c754
Parents: 1ed0200
Author: Mike Wallace <mi...@apache.org>
Authored: Fri Jun 5 17:01:13 2015 +0100
Committer: Mike Wallace <mi...@apache.org>
Committed: Fri Jun 5 17:01:13 2015 +0100

----------------------------------------------------------------------
 src/fabric_db_meta.erl | 2 +-
 src/fabric_rpc.erl     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fabric/blob/dd2a27b9/src/fabric_db_meta.erl
----------------------------------------------------------------------
diff --git a/src/fabric_db_meta.erl b/src/fabric_db_meta.erl
index 367ef06..f3ca60b 100644
--- a/src/fabric_db_meta.erl
+++ b/src/fabric_db_meta.erl
@@ -121,7 +121,7 @@ check_sec_set_int(NumWorkers, SetWorkers) ->
 
 
 get_all_security(DbName, Options) ->
-    Shards = case proplists:get_value(shards, Options) of
+    Shards = case couch_util:get_value(shards, Options) of
         Shards0 when is_list(Shards0) -> Shards0;
         _ -> mem3:shards(DbName)
     end,

http://git-wip-us.apache.org/repos/asf/couchdb-fabric/blob/dd2a27b9/src/fabric_rpc.erl
----------------------------------------------------------------------
diff --git a/src/fabric_rpc.erl b/src/fabric_rpc.erl
index 057dec3..9ecb127 100644
--- a/src/fabric_rpc.erl
+++ b/src/fabric_rpc.erl
@@ -203,7 +203,7 @@ get_missing_revs(DbName, IdRevsList, Options) ->
     end).
 
 update_docs(DbName, Docs0, Options) ->
-    case proplists:get_value(replicated_changes, Options) of
+    case couch_util:get_value(replicated_changes, Options) of
     true ->
         X = replicated_changes;
     _ ->