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