Skip to content

Commit

Permalink
Merge pull request #11438 from rabbitmq/loic-make-make-maker2
Browse files Browse the repository at this point in the history
Fix make regressions from "Making make better"
  • Loading branch information
lhoguin authored Jun 13, 2024
2 parents 0875169 + efb6955 commit 0f00374
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions deps/rabbit_common/mk/rabbitmq-run.mk
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,15 @@ virgin-node-tmpdir:
ifdef LEAVE_PLUGINS_DISABLED
RABBITMQ_ENABLED_PLUGINS ?=
else
# When running "make -C deps/plugin run-broker" we only want
# "plugin" to be enabled. See rabbitmq-components.mk for where
# this variable comes from.
ifdef deps_dir_overriden
RABBITMQ_ENABLED_PLUGINS ?= $(filter-out rabbit,$(PROJECT))
else
RABBITMQ_ENABLED_PLUGINS ?= ALL
endif
endif

# --------------------------------------------------------------------
# Run a full RabbitMQ.
Expand Down
1 change: 1 addition & 0 deletions deps/rabbitmq_ct_helpers/src/rabbit_ct_broker_helpers.erl
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@ do_start_rabbitmq_node(Config, NodeConfig, I) ->
{"RABBITMQ_SERVER_ADDITIONAL_ERL_ARGS=+S 2 +sbwt very_short +A 24 ~ts", [AdditionalErlArgs]},
"RABBITMQ_LOG=debug",
"RMQCTL_WAIT_TIMEOUT=180",
"FAST_RUN_BROKER=0",
{"TEST_TMPDIR=~ts", [PrivDir]}
| ExtraArgs],
Cmd = ["start-background-broker" | MakeVars],
Expand Down

0 comments on commit 0f00374

Please sign in to comment.