We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ba0bf commit 195ea5aCopy full SHA for 195ea5a
mysql-async/src/test/java/com/github/jasync/sql/db/mysql/ContainerHelper.java
@@ -61,7 +61,7 @@ private static boolean isLocalMySQLRunning() {
61
if (!firstRow.isEmpty()) {
62
String result = firstRow.getString(0);
63
if (!result.isEmpty()) {
64
- domainSocketPath = Path.of(result);
+ domainSocketPath = new File(result).toPath();
65
}
66
67
0 commit comments