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:56:52 UTC

[iotdb] branch jdkVersion11 created (now 6e20cbf)

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

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


      at 6e20cbf  [To rel/0.11] Fix JDK version missspelling

This branch includes the following new commits:

     new 6e20cbf  [To rel/0.11] 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.11] 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 jdkVersion11
in repository https://gitbox.apache.org/repos/asf/iotdb.git

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

    [To rel/0.11] 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 dfa07b9..10db198 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
@@ -49,7 +49,7 @@ public class StartupChecks {
           String.format("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<>();