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

[ignite-3] branch main 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 main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git


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

commit 639195926ee1ed8e0482e3f02a7f3e46e6724b92
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>
---
 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.