This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new 8a5eb24d2 TIKA-4537: try longer timeout
8a5eb24d2 is described below
commit 8a5eb24d23b6f6598be082b296c005b46836bfd6
Author: Tilman Hausherr <[email protected]>
AuthorDate: Fri Oct 31 16:17:57 2025 +0100
TIKA-4537: try longer timeout
---
.../java/org/apache/tika/language/translate/impl/RTGTranslatorTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tika-translate/src/test/java/org/apache/tika/language/translate/impl/RTGTranslatorTest.java
b/tika-translate/src/test/java/org/apache/tika/language/translate/impl/RTGTranslatorTest.java
index 30087100d..b4c0eca25 100644
---
a/tika-translate/src/test/java/org/apache/tika/language/translate/impl/RTGTranslatorTest.java
+++
b/tika-translate/src/test/java/org/apache/tika/language/translate/impl/RTGTranslatorTest.java
@@ -59,7 +59,7 @@ public class RTGTranslatorTest {
.waitingFor(Wait.forHttp("/about")
.forPort(6060)
.forStatusCode(200)
- .withStartupTimeout(Duration.ofMinutes(2)));
+ .withStartupTimeout(Duration.ofMinutes(5)));
container.start();
translator = new RTGTranslator();
}