You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/07/15 21:13:46 UTC

[lucene-solr] 01/02: #183 - Drop this timeout.

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

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git

commit 9b8260520e94f17a8104dc0bf28f85448cf23910
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Wed Jul 15 16:10:21 2020 -0500

    #183 - Drop this timeout.
---
 .../apache/solr/cloud/autoscaling/ScheduledTriggerIntegrationTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/test/org/apache/solr/cloud/autoscaling/ScheduledTriggerIntegrationTest.java b/solr/core/src/test/org/apache/solr/cloud/autoscaling/ScheduledTriggerIntegrationTest.java
index 8e5105f..ee1a993 100644
--- a/solr/core/src/test/org/apache/solr/cloud/autoscaling/ScheduledTriggerIntegrationTest.java
+++ b/solr/core/src/test/org/apache/solr/cloud/autoscaling/ScheduledTriggerIntegrationTest.java
@@ -119,7 +119,7 @@ public class ScheduledTriggerIntegrationTest extends SolrCloudTestCase {
     response = solrClient.request(req);
     assertEquals(response.get("result").toString(), "success");
 
-    assertTrue("ScheduledTrigger did not fire in time", triggerFiredLatch.await(45, TimeUnit.SECONDS));
+    assertTrue("ScheduledTrigger did not fire in time", triggerFiredLatch.await(10, TimeUnit.SECONDS));
     assertEquals(1, events.size());
     Map<String, Object> actionContextProps = actionContextPropertiesRef.get();
     assertNotNull(actionContextProps);