You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ta...@apache.org on 2023/05/17 13:51:50 UTC

[tika] branch main updated: TIKA-4046 -- bump siegfried timeout to 1 minute.

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

tallison 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 8877e9fc7 TIKA-4046 -- bump siegfried timeout to 1 minute.
8877e9fc7 is described below

commit 8877e9fc7ab2eb004ff7b5390aa281a7357a6eb1
Author: tballison <ta...@apache.org>
AuthorDate: Wed May 17 09:51:40 2023 -0400

    TIKA-4046 -- bump siegfried timeout to 1 minute.
---
 .../main/java/org/apache/tika/detect/siegfried/SiegfriedDetector.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tika-detectors/tika-detector-siegfried/src/main/java/org/apache/tika/detect/siegfried/SiegfriedDetector.java b/tika-detectors/tika-detector-siegfried/src/main/java/org/apache/tika/detect/siegfried/SiegfriedDetector.java
index fe42a9f3d..7629a066a 100644
--- a/tika-detectors/tika-detector-siegfried/src/main/java/org/apache/tika/detect/siegfried/SiegfriedDetector.java
+++ b/tika-detectors/tika-detector-siegfried/src/main/java/org/apache/tika/detect/siegfried/SiegfriedDetector.java
@@ -84,7 +84,7 @@ public class SiegfriedDetector implements Detector {
     public static String ERRORS = "errors";
 
     private static final Logger LOGGER = LoggerFactory.getLogger(SiegfriedDetector.class);
-    private static final long DEFAULT_TIMEOUT_MS = 6000;
+    private static final long DEFAULT_TIMEOUT_MS = 60000;
     private static final String DEFAULT_SIEGFRIED_PATH = "sf";
 
     private static ObjectMapper OBJECT_MAPPER = new ObjectMapper();