mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Fabio Pistolesi
08.50.2016 4c5bb1673a6e5ce2fe38f6dc22b074787826b8fe
opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/RootContainer.java
@@ -68,7 +68,7 @@
  /** The ID of the backend to which this entry root container belongs. */
  private final String backendId;
  /** The backend configuration. */
  private final PluggableBackendCfg config;
  private volatile PluggableBackendCfg config;
  /** The monitor for this backend. */
  private BackendMonitor monitor;
@@ -450,8 +450,9 @@
  @Override
  public ConfigChangeResult applyConfigurationChange(PluggableBackendCfg configuration)
  {
    getMonitorProvider().enableFilterUseStats(configuration.isIndexFilterAnalyzerEnabled());
    getMonitorProvider().setMaxEntries(configuration.getIndexFilterAnalyzerMaxFilters());
    config = configuration;
    getMonitorProvider().enableFilterUseStats(config.isIndexFilterAnalyzerEnabled());
    getMonitorProvider().setMaxEntries(config.getIndexFilterAnalyzerMaxFilters());
    return new ConfigChangeResult();
  }