You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by ha...@apache.org on 2021/05/19 03:00:04 UTC

[iotdb] 01/01: Fix JDK version missspelling

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

haonan pushed a commit to branch jdkVersion
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit edaa7d51e83081505ad28406f814147323c642c6
Author: HTHou <hh...@outlook.com>
AuthorDate: Wed May 19 10:59:25 2021 +0800

    Fix JDK version missspelling
---
 server/src/main/java/org/apache/iotdb/db/service/StartupChecks.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/src/main/java/org/apache/iotdb/db/service/StartupChecks.java b/server/src/main/java/org/apache/iotdb/db/service/StartupChecks.java
index 03d0dbe..d57ef78 100644
--- a/server/src/main/java/org/apache/iotdb/db/service/StartupChecks.java
+++ b/server/src/main/java/org/apache/iotdb/db/service/StartupChecks.java
@@ -53,7 +53,7 @@ public class StartupChecks {
                   "Requires JDK version >= %d, current version is %d",
                   IoTDBConstant.MIN_SUPPORTED_JDK_VERSION, version));
         } else {
-          logger.info("JDK veriosn is {}.", version);
+          logger.info("JDK version is {}.", version);
         }
       };
   private final List<StartupCheck> preChecks = new ArrayList<>();