Merge branch 'stable-2.12'

* stable-2.12:
  Fix log files not being compressed when running in a web container
  Update replication plugin
  Fix 'is:watched' query hanging issue due to no authenticated user
  Bypass hostname verification with sendemail.sslVerify
  Clarify in documentation that username cannot be changed
  Update 2.12.4 release notes with info about known issue 4323
  Update 2.12.4 release notes

Change-Id: I971d2ac9dc145494581e7cc61c13551d5223f178
This commit is contained in:
David Pursehouse
2016-08-18 09:06:13 -04:00
committed by Hugo Arès
5 changed files with 27 additions and 5 deletions

View File

@@ -28,6 +28,7 @@ import com.google.gerrit.lifecycle.LifecycleManager;
import com.google.gerrit.lifecycle.LifecycleModule;
import com.google.gerrit.lucene.LuceneIndexModule;
import com.google.gerrit.metrics.dropwizard.DropWizardMetricMaker;
import com.google.gerrit.pgm.util.LogFileCompressor;
import com.google.gerrit.reviewdb.client.AuthType;
import com.google.gerrit.server.account.InternalAccountDirectory;
import com.google.gerrit.server.cache.h2.DefaultCacheFactory;
@@ -295,6 +296,7 @@ public class WebAppInitializer extends GuiceServletContextListener
private Injector createSysInjector() {
final List<Module> modules = new ArrayList<>();
modules.add(new DropWizardMetricMaker.RestModule());
modules.add(new LogFileCompressor.Module());
modules.add(new EventBroker.Module());
modules.add(new H2AccountPatchReviewStore.Module());
modules.add(cfgInjector.getInstance(GitRepositoryManagerModule.class));