SOLR-13465 CoreContainer.auditloggerPlugin should be volatile (#672)

This commit is contained in:
Jan Høydahl 2019-11-23 01:21:47 +01:00 committed by GitHub
parent e45c5ce9b9
commit 312431b182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -188,6 +188,8 @@ Bug Fixes
* SOLR-13950: Fix InterruptedException being swallowed in ZkStateReaders getLeaderRetry method
(Andy Vuong via Tomás Fernández Löbbe)
* SOLR-13465: CoreContainer.auditloggerPlugin should be volatile (janhoy, hossman)
Other Changes
---------------------

View File

@ -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;