Skip to content

Commit 0ae0602

Browse files
michaelklishinmergify[bot]
authored andcommitted
Prelaunch: use .ez files when discovering rabbitmq.conf schemas in 3rd party plugins
and not .ex files, which are Elixir source files. (cherry picked from commit 36ea6f5)
1 parent 70bf72f commit 0ae0602

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)