Skip to content

Commit 16fa401

Browse files
authored
Merge pull request #12869 from rabbitmq/return-error-from-force-load-with-khepri
rabbit_db: Return error from `force_boot_command_test/0` with Khepri
2 parents 7bc7808 + 56f90a5 commit 16fa401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbit/src/rabbit_db.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ force_load_on_next_boot() ->
182182
%% Potentially, it could also be replaced with a way to export all the
183183
%% data.
184184
case rabbit_khepri:is_enabled() of
185-
true -> ok;
185+
true -> {error, unsupported_with_khepri};
186186
false -> force_load_on_next_boot_using_mnesia()
187187
end.
188188

0 commit comments

Comments
 (0)