You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sk...@apache.org on 2022/02/03 17:54:52 UTC

[ignite-3] branch ignite-3.0.0-alpha4 updated: IGNITE-16458 Updated the IP address in the example. Fixes #624

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

sk0x50 pushed a commit to branch ignite-3.0.0-alpha4
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


The following commit(s) were added to refs/heads/ignite-3.0.0-alpha4 by this push:
     new e5b30ee  IGNITE-16458 Updated the IP address in the example. Fixes #624
e5b30ee is described below

commit e5b30ee43fa33de9b391741c2ebe36490c9477c5
Author: IgGusev <de...@mail.ru>
AuthorDate: Thu Feb 3 20:52:47 2022 +0300

    IGNITE-16458 Updated the IP address in the example. Fixes #624
    
    Signed-off-by: Slava Koptilin <sl...@gmail.com>
    (cherry picked from commit 639195926ee1ed8e0482e3f02a7f3e46e6724b92)
---
 docs/_docs/sql/jdbc-driver.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/_docs/sql/jdbc-driver.adoc b/docs/_docs/sql/jdbc-driver.adoc
index 4666c6c..a4c9b50 100644
--- a/docs/_docs/sql/jdbc-driver.adoc
+++ b/docs/_docs/sql/jdbc-driver.adoc
@@ -36,7 +36,7 @@ The name of the driver’s class is `org.apache.ignite.jdbc.IgniteJdbcDriver`. F
 ServiceLoader.load(java.sql.Driver.class);
 
 // Open the JDBC connection.
-Connection conn = DriverManager.getConnection("jdbc:ignite:thin://127.0.1.1:10800");
+Connection conn = DriverManager.getConnection("jdbc:ignite:thin://127.0.0.1:10800");
 ----
 
 The driver connects to one of the cluster nodes and forwards all the queries to it for final execution. The node handles the query distribution and the result’s aggregations. Then the result is sent back to the client application.