summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2016-09-29 16:59:38 +0300
committerMichael Klishin <michael@clojurewerkz.org>2016-09-29 16:59:38 +0300
commite9d7488d6a83de115049e7ebb853bb8f0fa35b14 (patch)
treef9829576891316d053816241c8d6f34015198605 /src
parent6ff4794537c3ceafefc26451450fe65467cd2fa5 (diff)
downloadrabbitmq-server-git-e9d7488d6a83de115049e7ebb853bb8f0fa35b14.tar.gz
Use a name that's more to the point
Diffstat (limited to 'src')
-rw-r--r--src/rabbit.app.src2
-rw-r--r--src/rabbit_variable_queue.erl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit.app.src b/src/rabbit.app.src
index 10902b529a..217aad593e 100644
--- a/src/rabbit.app.src
+++ b/src/rabbit.app.src
@@ -101,5 +101,5 @@
%% and rabbitmq-server#667
{channel_operation_timeout, 15000},
%% rabbitmq-server-973
- {queue_explicit_gc_run_operation_threshold, 250}
+ {lazy_queue_explicit_gc_run_operation_threshold, 250}
]}]}.
diff --git a/src/rabbit_variable_queue.erl b/src/rabbit_variable_queue.erl
index e51869f411..3ce889fba5 100644
--- a/src/rabbit_variable_queue.erl
+++ b/src/rabbit_variable_queue.erl
@@ -440,7 +440,7 @@
-define(EXPLICIT_GC_RUN_OP_THRESHOLD,
case get(explicit_gc_run_operation_threshold) of
undefined ->
- Val = rabbit_misc:get_env(rabbit, queue_explicit_gc_run_operation_threshold,
+ Val = rabbit_misc:get_env(rabbit, lazy_queue_explicit_gc_run_operation_threshold,
?DEFAULT_EXPLICIT_GC_RUN_OP_THRESHOLD),
put(explicit_gc_run_operation_threshold, Val),
Val;