Skip to content

Commit

Permalink
Update the mysql driver for more friendlier license
Browse files Browse the repository at this point in the history
  • Loading branch information
mrproliu committed Oct 26, 2023
1 parent 4028c15 commit 778603f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions zipkin-server/server-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@

<!-- for mysql -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.0.33</version>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>${mariadb-java-client.version}</version>
</dependency>
</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ storage: &storage
mysql:
properties:
jdbcUrl: ${ZIPKIN_JDBC_URL:"jdbc:mysql://localhost:3306/swtest?rewriteBatchedStatements=true&allowMultiQueries=true"}
driverClassName: org.mariadb.jdbc.Driver
dataSource.user: ${ZIPKIN_DATA_SOURCE_USER:root}
dataSource.password: ${ZIPKIN_DATA_SOURCE_PASSWORD:root@1234}
dataSource.cachePrepStmts: ${ZIPKIN_DATA_SOURCE_CACHE_PREP_STMTS:true}
Expand Down

0 comments on commit 778603f

Please sign in to comment.