diff options
| author | Fabian Ponce <fponce@toasttab.com> | 2017-06-07 10:56:39 -0400 |
|---|---|---|
| committer | Fabian Ponce <fponce@toasttab.com> | 2017-06-07 11:15:09 -0400 |
| commit | 7cd2ca4fcd72e472bf582b45aa9380795aa28d94 (patch) | |
| tree | 46abfae3980275d54e3b5c63132fc69fbba416a4 /src | |
| parent | 915475013ecf5e3ed7f8ec53b77a75cb9b7514a1 (diff) | |
| download | rabbitmq-server-git-7cd2ca4fcd72e472bf582b45aa9380795aa28d94.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.erl | 2 |
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(), |
