Skip to content

Commit

Permalink
[misc] benchmark profile correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Nov 24, 2023
1 parent cbb930b commit 1c65b49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,12 @@
<artifactId>HikariCP</artifactId>
<version>5.0.1</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions src/benchmark/java/org/mariadb/jdbc/Common.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public class Common {
// conf
public static final String host = System.getProperty("TEST_HOST", "localhost");
public static final int port = Integer.parseInt(System.getProperty("TEST_PORT", "3306"));
public static final String username = System.getProperty("TEST_USERNAME", "diego");
public static final String password = System.getProperty("TEST_PASSWORD", "password");
public static final String username = System.getProperty("TEST_USERNAME", "root");
public static final String password = System.getProperty("TEST_PASSWORD", "");
public static final String database = System.getProperty("TEST_DATABASE", "testj");
public static final String other = System.getProperty("TEST_OTHER", "");

Expand Down

0 comments on commit 1c65b49

Please sign in to comment.