You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by to...@apache.org on 2022/01/25 13:59:40 UTC

[lucene] branch branch_9x updated: LUCENE-8930: increase timeout to 1 minite for the launched luke (seems it occationaly takes long time on windows vm)

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

tomoko pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/branch_9x by this push:
     new bf6a035  LUCENE-8930: increase timeout to 1 minite for the launched luke (seems it occationaly takes long time on windows vm)
bf6a035 is described below

commit bf6a035ca064905b2928426e9d44a45613d1fa30
Author: Tomoko Uchida <to...@gmail.com>
AuthorDate: Tue Jan 25 22:56:11 2022 +0900

    LUCENE-8930: increase timeout to 1 minite for the launched luke (seems it occationaly takes long time on windows vm)
---
 .../src/test/org/apache/lucene/distribution/TestScripts.java            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/distribution.tests/src/test/org/apache/lucene/distribution/TestScripts.java b/lucene/distribution.tests/src/test/org/apache/lucene/distribution/TestScripts.java
index a9a5640..9c3be02 100644
--- a/lucene/distribution.tests/src/test/org/apache/lucene/distribution/TestScripts.java
+++ b/lucene/distribution.tests/src/test/org/apache/lucene/distribution/TestScripts.java
@@ -62,7 +62,7 @@ public class TestScripts extends AbstractLuceneDistributionTest {
     execute(
         launcher,
         0,
-        20,
+        60,
         (output) -> {
           Assertions.assertThat(output).contains("[Vader] Hello, Luke.");
         });