Skip to content

Commit f599333

Browse files
committed
Proper JPMS support and Java 18 DNS SPI
Closes #245
1 parent 673d25d commit f599333

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- 'release/**'
1212

1313
env:
14-
BUILD_JAVA_VERSION: 20
14+
BUILD_JAVA_VERSION: '20'
1515

1616
jobs:
1717
test:
@@ -25,7 +25,7 @@ jobs:
2525
arch: [ 'x64' ]
2626
include:
2727
- os: windows-latest
28-
java: "${{ env.BUILD_JAVA_VERSION }}"
28+
java: '17'
2929
arch: x86
3030

3131
name: Java ${{ matrix.java }}/${{ matrix.arch }}/${{ matrix.os }}

src/test/java/org/xbill/DNS/NioTcpClientTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ void testResponseStream() throws InterruptedException, IOException {
9595
});
9696
server.start();
9797

98-
if (!cdlServerThreadStart.await(5, TimeUnit.SECONDS)) {
98+
if (!cdlServerThreadStart.await(10, TimeUnit.SECONDS)) {
9999
fail("timed out waiting for server thread to start");
100100
}
101101

0 commit comments

Comments
 (0)