Merge branch 'stable-2.8'

* stable-2.8:
  Stop packaging joda time in root of gerrit.war
  Add release notes for Gerrit 2.8.2
  Pass recursive=true into config.getNames() JGit method
  Bump JGit version to 3.2.0.201312181205-r
  Update replication plugin to latest revision
This commit is contained in:
Shawn Pearce
2014-02-04 14:10:20 -08:00
6 changed files with 145 additions and 6 deletions

View File

@@ -52,7 +52,7 @@ public class SshModule extends LifecycleModule {
@Inject
SshModule(@GerritServerConfig Config cfg) {
aliases = Maps.newHashMap();
for (String name : cfg.getNames("ssh-alias")) {
for (String name : cfg.getNames("ssh-alias", true)) {
aliases.put(name, cfg.getString("ssh-alias", null, name));
}
}