You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2022/01/20 15:51:16 UTC

[lucene] branch main updated: LUCENE-8930: increase timeout for the launched luke.

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 08d6633  LUCENE-8930: increase timeout for the launched luke.
08d6633 is described below

commit 08d6633d9454180ac936e5a17e3c9c95394c599a
Author: Dawid Weiss <da...@carrotsearch.com>
AuthorDate: Thu Jan 20 16:51:05 2022 +0100

    LUCENE-8930: increase timeout for the launched luke.
---
 .../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 bf7b3f7..a9a5640 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,
-        5,
+        20,
         (output) -> {
           Assertions.assertThat(output).contains("[Vader] Hello, Luke.");
         });