Skip to content

Commit 195ea5a

Browse files
committed
fix compilation
1 parent 11ba0bf commit 195ea5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mysql-async/src/test/java/com/github/jasync/sql/db/mysql/ContainerHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static boolean isLocalMySQLRunning() {
6161
if (!firstRow.isEmpty()) {
6262
String result = firstRow.getString(0);
6363
if (!result.isEmpty()) {
64-
domainSocketPath = Path.of(result);
64+
domainSocketPath = new File(result).toPath();
6565
}
6666
}
6767
}

0 commit comments

Comments
 (0)