You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by md...@apache.org on 2022/07/25 16:13:39 UTC

[solr] branch main updated: AuditLoggerIT should wait to join thread (#952)

This is an automated email from the ASF dual-hosted git repository.

mdrob pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new 09ccd1d2192 AuditLoggerIT should wait to join thread (#952)
09ccd1d2192 is described below

commit 09ccd1d21921bb386b41450fc4048027ffafe584
Author: Mike Drob <md...@apache.org>
AuthorDate: Mon Jul 25 11:13:35 2022 -0500

    AuditLoggerIT should wait to join thread (#952)
---
 .../src/test/org/apache/solr/security/AuditLoggerIntegrationTest.java    | 1 +
 1 file changed, 1 insertion(+)

diff --git a/solr/core/src/test/org/apache/solr/security/AuditLoggerIntegrationTest.java b/solr/core/src/test/org/apache/solr/security/AuditLoggerIntegrationTest.java
index 517001546c3..d43979a8007 100644
--- a/solr/core/src/test/org/apache/solr/security/AuditLoggerIntegrationTest.java
+++ b/solr/core/src/test/org/apache/solr/security/AuditLoggerIntegrationTest.java
@@ -637,6 +637,7 @@ public class AuditLoggerIntegrationTest extends SolrCloudAuthTestCase {
     public void close() throws Exception {
       shutdownCluster();
       receiverThread.interrupt();
+      receiverThread.join();
       receiver.close();
       receiverThread = null;
     }