Skip to content

Commit

Permalink
OF-2611: Reduce socket timeout for S2S unit tests
Browse files Browse the repository at this point in the history
By reducing the socket timeout, test execution duration improves.
  • Loading branch information
guusdk committed Jul 12, 2023
1 parent bb2c920 commit 3f931b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
public class AbstractRemoteServerDummy
{
public static final String XMPP_DOMAIN = "remote-dummy.example.org";
public static final Duration SO_TIMEOUT = Duration.ofMillis(100);
public static final Duration SO_TIMEOUT = Duration.ofMillis(50);
protected boolean useExpiredEndEntityCertificate;
protected boolean useSelfSignedCertificate;
protected boolean disableDialback;
Expand Down

0 comments on commit 3f931b7

Please sign in to comment.