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 02:54:44 UTC

[iotdb] branch jdkVersion12 created (now b203259)

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

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


      at b203259  [To rel/0.12] Fix JDK version missspelling

This branch includes the following new commits:

     new b203259  [To rel/0.12] 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: [To rel/0.12] 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 jdkVersion12
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit b203259f94deaa31b9edec556a3a8ec1c78160b5
Author: HTHou <hh...@outlook.com>
AuthorDate: Wed May 19 10:53:48 2021 +0800

    [To rel/0.12] 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<>();