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:03 UTC

[iotdb] branch jdkVersion created (now edaa7d5)

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

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


      at edaa7d5  Fix JDK version missspelling

This branch includes the following new commits:

     new edaa7d5  Fix JDK version missspelling

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


[iotdb] 01/01: Fix JDK version missspelling

Posted by ha...@apache.org.
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<>();