You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by lg...@apache.org on 2015/08/25 14:40:24 UTC

mina-sshd git commit: Increased timeout of WindowAdjustTest#testTrafficHeavyLoad to 2 min. in order to allow builds on less powerful systems

Repository: mina-sshd
Updated Branches:
  refs/heads/master bda6cb099 -> d4e746cd9


Increased timeout of WindowAdjustTest#testTrafficHeavyLoad to 2 min. in order to allow builds on less powerful systems

* Seems that the more realistic timeout is ~90 sec. so using 2 min. in order to avoid threshold fluctuations problems


Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/d4e746cd
Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/d4e746cd
Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/d4e746cd

Branch: refs/heads/master
Commit: d4e746cd952937d5f079d09560a43c418b13a18a
Parents: bda6cb0
Author: Lyor Goldstein <lg...@vmware.com>
Authored: Tue Aug 25 15:40:13 2015 +0300
Committer: Lyor Goldstein <lg...@vmware.com>
Committed: Tue Aug 25 15:40:13 2015 +0300

----------------------------------------------------------------------
 sshd-core/src/test/java/org/apache/sshd/WindowAdjustTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/d4e746cd/sshd-core/src/test/java/org/apache/sshd/WindowAdjustTest.java
----------------------------------------------------------------------
diff --git a/sshd-core/src/test/java/org/apache/sshd/WindowAdjustTest.java b/sshd-core/src/test/java/org/apache/sshd/WindowAdjustTest.java
index 1e568c0..4e02001 100644
--- a/sshd-core/src/test/java/org/apache/sshd/WindowAdjustTest.java
+++ b/sshd-core/src/test/java/org/apache/sshd/WindowAdjustTest.java
@@ -96,7 +96,7 @@ public class WindowAdjustTest {
         }
     }
 
-    @Test(timeout = 60 * 1000L)
+    @Test(timeout = 2L * 60L * 1000L)
     public void testTrafficHeavyLoad() throws Exception {
 
         try (SshClient client = SshClient.setUpDefaultClient()) {