Skip to content

Commit b681dd0

Browse files
Merge pull request #15124 from rabbitmq/mk-fix-a-file-extension-typo
Prelaunch: look for .ez files when discovering rabbitmq.conf schemas in 3rd party plugins
2 parents 34d4f5b + 36ea6f5 commit b681dd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/rabbitmq_prelaunch/src/rabbit_prelaunch_conf.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ list_apps1([Dir | Rest], Apps) ->
350350
{ok, Filenames} ->
351351
NewApps = [list_to_atom(
352352
hd(
353-
string:split(filename:basename(F, ".ex"), "-")))
353+
string:split(filename:basename(F, ".ez"), "-")))
354354
|| F <- Filenames],
355355
Apps1 = lists:umerge(Apps, lists:sort(NewApps)),
356356
list_apps1(Rest, Apps1);

0 commit comments

Comments
 (0)