summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKarl Nilsson <kjnilsson@gmail.com>2020-09-30 16:32:23 +0100
committerGitHub <noreply@github.com>2020-09-30 16:32:23 +0100
commit5cd95d69d8f28fc08fa919c0b9f62689f2594f93 (patch)
treea0656e0fc7da62d1f648cb993b57249b02b2ef8c /Makefile
parentbdb6f9b508dd1aaad5e618d9a620adb7972e618f (diff)
parent6d6e4dd76ccbe95ac445fd581a6bb6de631929cd (diff)
downloadrabbitmq-server-git-5cd95d69d8f28fc08fa919c0b9f62689f2594f93.tar.gz
Merge pull request #2347 from rabbitmq/stream-queue
Stream queue
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3c38e5f57c..3b31513c69 100644
--- a/Makefile
+++ b/Makefile
@@ -117,7 +117,8 @@ define PROJECT_ENV
%% Socket writer will run GC every 1 GB of outgoing data
{writer_gc_threshold, 1000000000},
%% interval at which connection/channel tracking executes post operations
- {tracking_execution_timeout, 15000}
+ {tracking_execution_timeout, 15000},
+ {stream_messages_soft_limit, 256}
]
endef
@@ -130,11 +131,12 @@ APPS_DIR := $(CURDIR)/apps
LOCAL_DEPS = sasl rabbitmq_prelaunch os_mon inets compiler public_key crypto ssl syntax_tools xmerl
BUILD_DEPS = rabbitmq_cli syslog
-DEPS = cuttlefish ranch lager rabbit_common ra sysmon_handler stdout_formatter recon observer_cli
+DEPS = cuttlefish ranch lager rabbit_common ra sysmon_handler stdout_formatter recon observer_cli osiris amqp10_common
TEST_DEPS = rabbitmq_ct_helpers rabbitmq_ct_client_helpers amqp_client meck proper
dep_cuttlefish = hex 2.4.1
dep_syslog = git https://github.com/schlagert/syslog 3.4.5
+dep_osiris = git https://github.com/rabbitmq/osiris master
define usage_xml_to_erl
$(subst __,_,$(patsubst $(DOCS_DIR)/rabbitmq%.1.xml, src/rabbit_%_usage.erl, $(subst -,_,$(1))))