From 6ae13b5f8b827bc87a8cf3306c3caa1b97e49df3 Mon Sep 17 00:00:00 2001 From: Filipe David Borba Manana Date: Thu, 30 Sep 2010 12:03:15 +0000 Subject: Removing ?getv macros. With OTP releases up to R13B03 it's not possible to define a 2 macro functions with the same name and different arities. (Only allowed in R13B04 and R14). git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@1003025 13f79535-47bb-0310-9956-ffa450edef68 --- src/couchdb/couch_work_queue.erl | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/couchdb/couch_work_queue.erl') diff --git a/src/couchdb/couch_work_queue.erl b/src/couchdb/couch_work_queue.erl index 2ec748f5..13ec7335 100644 --- a/src/couchdb/couch_work_queue.erl +++ b/src/couchdb/couch_work_queue.erl @@ -20,8 +20,6 @@ -export([init/1, terminate/2]). -export([handle_call/3, handle_cast/2, code_change/3, handle_info/2]). --include("couch_db.hrl"). - -record(q, { queue = queue:new(), blocked = [], @@ -61,9 +59,9 @@ close(Wq) -> init(Options) -> Q = #q{ - max_size = ?getv(max_size, Options), - max_items = ?getv(max_items, Options), - multi_workers = ?getv(multi_workers, Options, false) + max_size = couch_util:get_value(max_size, Options), + max_items = couch_util:get_value(max_items, Options), + multi_workers = couch_util:get_value(multi_workers, Options, false) }, {ok, Q}. -- cgit v1.2.3