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:01 UTC

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

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;
     _ ->