You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by al...@apache.org on 2021/04/22 12:37:12 UTC

[dubbo-samples] branch master updated: disable ssl for mysql client due to Github Actions limited ssl support (#300)

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

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-samples.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ed2e72  disable ssl for mysql client due to Github Actions limited ssl support (#300)
5ed2e72 is described below

commit 5ed2e7235a7f3844747b0390aeb76840cfba689c
Author: Albumen Kevin <jh...@gmail.com>
AuthorDate: Thu Apr 22 20:37:00 2021 +0800

    disable ssl for mysql client due to Github Actions limited ssl support (#300)
---
 dubbo-samples-transaction/src/main/resources/jdbc.properties | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dubbo-samples-transaction/src/main/resources/jdbc.properties b/dubbo-samples-transaction/src/main/resources/jdbc.properties
index a0b5b85..463ad10 100644
--- a/dubbo-samples-transaction/src/main/resources/jdbc.properties
+++ b/dubbo-samples-transaction/src/main/resources/jdbc.properties
@@ -13,17 +13,17 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
 #
-jdbc.account.url=jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata-demo
+jdbc.account.url=jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata-demo?useSSL=false
 jdbc.account.username=root
 jdbc.account.password=helloworld
 jdbc.account.driver=com.mysql.jdbc.Driver
 # storage db config
-jdbc.storage.url=jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata-demo
+jdbc.storage.url=jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata-demo?useSSL=false
 jdbc.storage.username=root
 jdbc.storage.password=helloworld
 jdbc.storage.driver=com.mysql.jdbc.Driver
 # order db config
-jdbc.order.url=jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata-demo
+jdbc.order.url=jdbc:mysql://${mysql.address:127.0.0.1}:${mysql.port:3306}/seata-demo?useSSL=false
 jdbc.order.username=root
 jdbc.order.password=helloworld
 jdbc.order.driver=com.mysql.jdbc.Driver

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@dubbo.apache.org
For additional commands, e-mail: notifications-help@dubbo.apache.org