summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorANycz <aleksander.nycz@comarch.com>2019-12-11 23:11:15 +0100
committerANycz <aleksander.nycz@comarch.com>2019-12-11 23:11:15 +0100
commit3daa6be55cb81d86da0bddad39a06378c3b5aeba (patch)
treec567c90fb6fe26ba0adefcab266bdb294714a7a3 /Makefile
parent178757932e65704abd95a1bf64c460956a9391fa (diff)
downloadrabbitmq-server-git-3daa6be55cb81d86da0bddad39a06378c3b5aeba.tar.gz
make garbage collector threshold configurable
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 30a2066e38..9a8a936c69 100644
--- a/Makefile
+++ b/Makefile
@@ -129,7 +129,9 @@ define PROJECT_ENV
%% interval at which the channel can perform periodic actions
{channel_tick_interval, 60000},
%% Default max message size is 128 MB
- {max_message_size, 134217728}
+ {max_message_size, 134217728},
+ %% Default is ~ 1MB
+ {gc_threshold, 1000000}
]
endef