summaryrefslogtreecommitdiff
path: root/apps/couch/src/couch_ref_counter.erl
diff options
context:
space:
mode:
Diffstat (limited to 'apps/couch/src/couch_ref_counter.erl')
-rw-r--r--apps/couch/src/couch_ref_counter.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/couch/src/couch_ref_counter.erl b/apps/couch/src/couch_ref_counter.erl
index 5a111ab6..a774f469 100644
--- a/apps/couch/src/couch_ref_counter.erl
+++ b/apps/couch/src/couch_ref_counter.erl
@@ -24,14 +24,14 @@ drop(RefCounterPid) ->
drop(RefCounterPid, self()).
drop(RefCounterPid, Pid) ->
- gen_server:call(RefCounterPid, {drop, Pid}).
+ gen_server:call(RefCounterPid, {drop, Pid}, infinity).
add(RefCounterPid) ->
add(RefCounterPid, self()).
add(RefCounterPid, Pid) ->
- gen_server:call(RefCounterPid, {add, Pid}).
+ gen_server:call(RefCounterPid, {add, Pid}, infinity).
count(RefCounterPid) ->
gen_server:call(RefCounterPid, count).