mirror of https://github.com/apache/lucene.git
SOLR-13465 CoreContainer.auditloggerPlugin should be volatile (#672)
This commit is contained in:
parent
e45c5ce9b9
commit
312431b182
|
@ -188,6 +188,8 @@ Bug Fixes
|
||||||
* SOLR-13950: Fix InterruptedException being swallowed in ZkStateReader’s getLeaderRetry method
|
* SOLR-13950: Fix InterruptedException being swallowed in ZkStateReader’s getLeaderRetry method
|
||||||
(Andy Vuong via Tomás Fernández Löbbe)
|
(Andy Vuong via Tomás Fernández Löbbe)
|
||||||
|
|
||||||
|
* SOLR-13465: CoreContainer.auditloggerPlugin should be volatile (janhoy, hossman)
|
||||||
|
|
||||||
Other Changes
|
Other Changes
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
|
@ -206,7 +206,7 @@ public class CoreContainer {
|
||||||
|
|
||||||
private volatile SecurityPluginHolder<AuthenticationPlugin> authenticationPlugin;
|
private volatile SecurityPluginHolder<AuthenticationPlugin> authenticationPlugin;
|
||||||
|
|
||||||
private SecurityPluginHolder<AuditLoggerPlugin> auditloggerPlugin;
|
private volatile SecurityPluginHolder<AuditLoggerPlugin> auditloggerPlugin;
|
||||||
|
|
||||||
private volatile BackupRepositoryFactory backupRepoFactory;
|
private volatile BackupRepositoryFactory backupRepoFactory;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue