Skip to content

Commit a3115a0

Browse files
committed
rabbit_khepri: Fix log message arguments
The message format string requires two arguments, but the first one was not specified.
1 parent c8311b9 commit a3115a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbit/src/rabbit_khepri.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1864,7 +1864,7 @@ khepri_db_migration_enable(#{feature_name := FeatureName}) ->
18641864
"Feature flag `~s`: node ~0p already clustered (feature flag "
18651865
"enabled as part of clustering?); "
18661866
"skipping Mnesia->Khepri migration",
1867-
[node()],
1867+
[FeatureName, node()],
18681868
#{domain => ?RMQLOG_DOMAIN_DB}),
18691869
ok
18701870
end.

0 commit comments

Comments
 (0)