Use recursive name lookup for PluginConfig

PluginConfig is based on Gerrit's Config and delegates its
variable resolution to its base config object.
When resolving the configuration names, we do need to perform
a recursive resolution otherwise we would always get an
empty names list.

Change-Id: Iff7a0de4530597fbe45c7aef753363ab6132ecfa
This commit is contained in:
Luca Milanesio
2016-10-13 23:07:07 +01:00
committed by David Pursehouse
parent 145c87a266
commit 9e1d291e83

View File

@@ -151,6 +151,6 @@ public class PluginConfig {
}
public Set<String> getNames() {
return cfg.getNames(PLUGIN, pluginName);
return cfg.getNames(PLUGIN, pluginName, true);
}
}