summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFabian Ponce <fponce@toasttab.com>2017-06-07 10:56:39 -0400
committerFabian Ponce <fponce@toasttab.com>2017-06-07 10:56:39 -0400
commit8d52a09154fe4a63690eb022aa1a3ba79388f551 (patch)
tree3ea9ae8ff82f06fed15c1b232a1a0f7c0e5d3bc5 /src
parent00b48b8b78c9bb596708a3cff080a9e3f3ad4132 (diff)
downloadrabbitmq-server-git-8d52a09154fe4a63690eb022aa1a3ba79388f551.tar.gz
Modify the documentation and background_gc.erl default value for background_gc_enabled to false to match the behavior of the Makefile.
Diffstat (limited to 'src')
-rw-r--r--src/background_gc.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background_gc.erl b/src/background_gc.erl
index 2ae9d93e4e..bbac3138cf 100644
--- a/src/background_gc.erl
+++ b/src/background_gc.erl
@@ -74,7 +74,7 @@ interval_gc(State = #state{last_interval = LastInterval}) ->
State#state{last_interval = Interval}.
gc() ->
- Enabled = rabbit_misc:get_env(rabbit, background_gc_enabled, true),
+ Enabled = rabbit_misc:get_env(rabbit, background_gc_enabled, false),
case Enabled of
true ->
[garbage_collect(P) || P <- processes(),