diff options
| author | Diana Parra Corbacho <dparracorbac@vmware.com> | 2023-02-08 08:53:16 +0100 |
|---|---|---|
| committer | Diana Parra Corbacho <dparracorbac@vmware.com> | 2023-02-08 08:53:27 +0100 |
| commit | 34ac08258bed3387ebf459f814c01e48e9c0ef8b (patch) | |
| tree | 2e98ea79d6ffb1c6b10a056d469c9d740d2fa586 | |
| parent | ba22919512f87751ca15a006a258f808035a5659 (diff) | |
| download | rabbitmq-server-git-34ac08258bed3387ebf459f814c01e48e9c0ef8b.tar.gz | |
Bugfixes
| -rw-r--r-- | deps/rabbit/BUILD.bazel | 3 | ||||
| -rw-r--r-- | deps/rabbit/src/rabbit_mirror_queue_misc.erl | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/deps/rabbit/BUILD.bazel b/deps/rabbit/BUILD.bazel index 0b1a84d04c..cc522b3a8c 100644 --- a/deps/rabbit/BUILD.bazel +++ b/deps/rabbit/BUILD.bazel @@ -1147,6 +1147,9 @@ rabbitmq_integration_suite( rabbitmq_integration_suite( name = "metadata_store_phase1_SUITE", size = "small", + deps = [ + "@khepri//:erlang_app", + ], ) assert_suites() diff --git a/deps/rabbit/src/rabbit_mirror_queue_misc.erl b/deps/rabbit/src/rabbit_mirror_queue_misc.erl index f7f79daefe..90472ff2e4 100644 --- a/deps/rabbit/src/rabbit_mirror_queue_misc.erl +++ b/deps/rabbit/src/rabbit_mirror_queue_misc.erl @@ -537,7 +537,7 @@ remove_all_slaves_in_khepri(QName, PendingSlavePids) -> %% ensure old incarnations are stopped using %% the pending mirror pids. Q3 = amqqueue:set_slave_pids_pending_shutdown(Q2, PendingSlavePids), - rabbit_mirror_queue_misc:store_updated_slaves_in_khepri(Q3, Decorators) + store_updated_slaves_in_khepri(Q3, Decorators) end, rw). %%---------------------------------------------------------------------------- |
