diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2015-09-01 14:23:14 +0200 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr> | 2015-10-20 11:10:48 +0200 |
| commit | 920eb60269855e462aeac0d2dcfd15889001157d (patch) | |
| tree | c90ca95ce9629a59c5ca3aa7824bd8d3350e6534 /src | |
| parent | 0b4131479931e2fb88d083ba7f812cee14018659 (diff) | |
| download | rabbitmq-server-git-920eb60269855e462aeac0d2dcfd15889001157d.tar.gz | |
rabbit_plugins: Do not consider rabbitmq-common as a plugin
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_plugins.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rabbit_plugins.erl b/src/rabbit_plugins.erl index 3297032346..84828e018f 100644 --- a/src/rabbit_plugins.erl +++ b/src/rabbit_plugins.erl @@ -93,6 +93,8 @@ list(PluginsDir) -> {AvailablePlugins, Problems} = lists:foldl(fun ({error, EZ, Reason}, {Plugins1, Problems1}) -> {Plugins1, [{EZ, Reason} | Problems1]}; + (#plugin{name = rabbit_common}, {Plugins1, Problems1}) -> + {Plugins1, Problems1}; (Plugin = #plugin{}, {Plugins1, Problems1}) -> {[Plugin|Plugins1], Problems1} end, {[], []}, |
