File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
distribution/tools/launchers/src/main/java/org/elasticsearch/tools/launchers Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,10 @@ private static List<PluginInfo> getPluginInfo(Path plugins) throws IOException {
45
45
for (Path pluginDir : pluginDirs ) {
46
46
final List <String > jarFiles = new ArrayList <>();
47
47
final Properties props = new Properties ();
48
+ if (pluginDir .getFileName ().toString ().equals (".elasticsearch-plugins.yml.cache" ) == false ) {
49
+ // skip plugins cache, see SyncPluginsAction
50
+ continue ;
51
+ }
48
52
49
53
final List <Path > pluginFiles = Files .list (pluginDir ).collect (Collectors .toList ());
50
54
for (Path pluginFile : pluginFiles ) {
Original file line number Diff line number Diff line change
1
+ pr : 109116
2
+ summary : Guard bootstrap plugins loading from detecting plugins cache
3
+ area : Infra/Plugins
4
+ type : bug
5
+ issues :
6
+ - 97702
You can’t perform that action at this time.
0 commit comments