Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vianello committed Aug 29, 2021
1 parent cbe38a9 commit 9bdc3a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private DefaultMySqlDatabaseConnector(String database) {
if (properties.isEmpty()) {
this.url = format("jdbc:mysql://%s:%d/%s", hostname, port, database);
} else {
this.url = format("jdbc:mysqk://%s:%d/%s?%s", hostname, port, database, properties);
this.url = format("jdbc:mysql://%s:%d/%s?%s", hostname, port, database, properties);
}
}

Expand Down

0 comments on commit 9bdc3a6

Please sign in to comment.