From 7c6bbd84e6154ea4b63d1110aea8e288102257f5 Mon Sep 17 00:00:00 2001 From: Ryan Cheung Date: Fri, 27 May 2022 12:10:39 +0800 Subject: [PATCH 1/2] Fix broken hyperlinks --- tools/etl/tg-jdbc-driver/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/etl/tg-jdbc-driver/README.md b/tools/etl/tg-jdbc-driver/README.md index 38db3078b..260c3912c 100644 --- a/tools/etl/tg-jdbc-driver/README.md +++ b/tools/etl/tg-jdbc-driver/README.md @@ -123,7 +123,7 @@ try { Don't forget to use `jdbc:tg:https:` as its prefix instead of `jdbc:tg:http:`. The certificate needs to be converted to JKS format. -Detailed example can be found at [GraphQuery.java](tg-jdbc-examples/src/main/java/com/tigergraph/jdbc/GraphQuery.java). +Detailed example can be found at [GraphQuery.java](https://github.com/tigergraph/ecosys/blob/master/tools/etl/tg-jdbc-driver/tg-jdbc-examples/src/main/java/com/tigergraph/jdbc/examples/GraphQuery.java). ## Connection Pool This JDBC driver could be used in together with third party connection pools. For instance, [HikariCP](https://github.com/brettwooldridge/HikariCP). @@ -170,7 +170,7 @@ config.addDataSourceProperty("trustStorePassword", "password"); config.addDataSourceProperty("trustStoreType", "JKS"); ``` -Detailed example can be found at [ConnectionPool.java](tg-jdbc-examples/src/main/java/com/tigergraph/jdbc/ConnectionPool.java). +Detailed example can be found at [ConnectionPool.java](https://github.com/tigergraph/ecosys/blob/master/tools/etl/tg-jdbc-driver/tg-jdbc-examples/src/main/java/com/tigergraph/jdbc/examples/ConnectionPool.java). ## Supported Queries ``` From 80cb103513ce4e626c30f7c9b153f7cb0747e923 Mon Sep 17 00:00:00 2001 From: Ryan Cheung Date: Fri, 27 May 2022 12:14:14 +0800 Subject: [PATCH 2/2] Fix contributing broken hyperlink --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c9f611b47..240eb2dac 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -97,7 +97,7 @@ The process described here has several goals: Please follow these steps to have your contribution considered by the maintainers: -1. Follow all instructions in [the template](PULL_REQUEST_TEMPLATE.md) +1. Follow all instructions in [the template](https://github.com/tigergraph/ecosys/blob/master/docs/PULL_REQUEST_TEMPLATE.md) 2. Follow the [styleguides](#styleguides) 3. After you submit your pull request, a reviewer(s) may ask you to complete additional design work, tests, or other changes before your pull request can be ultimately accepted.