This is an automated email from the ASF dual-hosted git repository. sebb pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push: new 73fc46a Do they all work on 200 sleep? 73fc46a is described below commit 73fc46aeb65680e5d76d7702e0d1583bb0eabb57 Author: Sebb <s...@apache.org> AuthorDate: Sun Aug 1 22:59:47 2021 +0100 Do they all work on 200 sleep? --- .github/workflows/maven.yml | 8 ++++---- src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 15f5a1a..de6149b 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -25,11 +25,11 @@ jobs: continue-on-error: true # ${{ matrix.experimental }} strategy: matrix: - java: [16] # [ 8, 11, 16 ] + java: [ 8, 11, 16 ] experimental: [false] - # include: - # - java: 17-ea - # experimental: true + include: + - java: 17-ea + experimental: true steps: - uses: actions/checkout@v2.3.4 diff --git a/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java b/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java index 39aa0a8..701f571 100644 --- a/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java +++ b/src/test/java/org/apache/commons/net/ftp/FTPSClientTest.java @@ -197,7 +197,7 @@ public class FTPSClientTest { assertEquals(SocketPort, client.getRemotePort()); // try { - Thread.sleep(100); // See if a short sleep before USER command helps + Thread.sleep(200); // See if a short sleep before USER command helps } catch (InterruptedException e) {}; assertTrue(client.login("test", "test")); assertClientCode(client);