This is an automated email from the ASF dual-hosted git repository.
struberg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openjpa.git
The following commit(s) were added to refs/heads/master by this push:
new 1652794 use local connection without SSL for MySQL in Docker
1652794 is described below
commit 165279436c3a0c1322057a994e4d835136c0963b
Author: Mark Struberg <[email protected]>
AuthorDate: Tue Oct 30 13:45:57 2018 +0100
use local connection without SSL for MySQL in Docker
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 64eee5e..5dbc9d8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -571,7 +571,7 @@
<!-- default settings for local docker -->
<docker.external.mysql.port>3306</docker.external.mysql.port>
<openjpa.mysql.dbname>openjpatst</openjpa.mysql.dbname>
-
<openjpa.mysql.url>jdbc:mysql://localhost:${docker.external.mysql.port}/${openjpa.mysql.dbname}</openjpa.mysql.url>
+
<openjpa.mysql.url>jdbc:mysql://localhost:${docker.external.mysql.port}/${openjpa.mysql.dbname}?useSSL=false</openjpa.mysql.url>
<openjpa.mysql.username>openjpatst</openjpa.mysql.username>
<openjpa.mysql.password>openjpatst</openjpa.mysql.password>