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/01/30 16:54:48 UTC

[tika] branch main updated: push off removing digest option in tika-app and tika-server to 2.8.0

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 d0cf47f55 push off removing digest option in tika-app and tika-server to 2.8.0
d0cf47f55 is described below

commit d0cf47f5512a928a216f05b821762b7b6d1dd006
Author: tallison <ta...@apache.org>
AuthorDate: Mon Jan 30 11:54:35 2023 -0500

    push off removing digest option in tika-app and tika-server to 2.8.0
---
 tika-app/src/main/java/org/apache/tika/cli/TikaCLI.java                 | 2 +-
 .../src/main/java/org/apache/tika/server/core/TikaServerConfig.java     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tika-app/src/main/java/org/apache/tika/cli/TikaCLI.java b/tika-app/src/main/java/org/apache/tika/cli/TikaCLI.java
index ee7feacfc..5cd39bebc 100644
--- a/tika-app/src/main/java/org/apache/tika/cli/TikaCLI.java
+++ b/tika-app/src/main/java/org/apache/tika/cli/TikaCLI.java
@@ -700,7 +700,7 @@ public class TikaCLI {
             if (digester != null) {
                 parser = new DigestingParser(parser, digester);
                 LOG.info("As of Tika 2.5.0, you can set the digester via the AutoDetectParserConfig in " +
-                        "tika-config.xml. We plan to remove this commandline option in 2.7.0");
+                        "tika-config.xml. We plan to remove this commandline option in 2.8.0");
             }
         }
         detector = config.getDetector();
diff --git a/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/TikaServerConfig.java b/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/TikaServerConfig.java
index 4b575f243..cd38150bc 100644
--- a/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/TikaServerConfig.java
+++ b/tika-server/tika-server-core/src/main/java/org/apache/tika/server/core/TikaServerConfig.java
@@ -513,7 +513,7 @@ public class TikaServerConfig extends ConfigBase {
 
     public void setDigest(String digest) {
         LOG.info("As of Tika 2.5.0, you can set the digester via the AutoDetectParserConfig in " +
-                "tika-config.xml. We plan to remove this commandline option in 2.7.0");
+                "tika-config.xml. We plan to remove this commandline option in 2.8.0");
         this.digest = digest;
     }