diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit.app.src | 2 | ||||
| -rw-r--r-- | src/rabbit_variable_queue.erl | 2 |
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; |
