Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse2017-04-06 02:23:46 +0000
committerDavid Pursehouse2017-04-06 02:45:02 +0000
commit661232b1e98197e242a8117450e64ff19dd2bc92 (patch)
treef683a0ea29d0bd3cca934e2e47f217798e55322e
parent6a311a071f8489d4f69225eb9c5a5c93773c012f (diff)
downloadjgit-661232b1e98197e242a8117450e64ff19dd2bc92.tar.gz
jgit-661232b1e98197e242a8117450e64ff19dd2bc92.tar.xz
jgit-661232b1e98197e242a8117450e64ff19dd2bc92.zip
PushConnectionTest: Increase maxCommandBytes again
It was already increased in 61a943e, but that was still not enough to take into account the length of snapshot versions. Change-Id: Ib54cec97e97042fe274b87a3a1afa9bb06c8bf19 Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
-rw-r--r--org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java
index 908a1bab26..0e4e9ccd41 100644
--- a/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java
+++ b/org.eclipse.jgit.test/tst/org/eclipse/jgit/transport/PushConnectionTest.java
@@ -184,7 +184,7 @@ public class PushConnectionTest {
updates.put(rru.getRemoteName(), rru);
}
- server.getConfig().setInt("receive", null, "maxCommandBytes", 180);
+ server.getConfig().setInt("receive", null, "maxCommandBytes", 190);
try (Transport tn = testProtocol.open(uri, client, "server");
PushConnection connection = tn.openPush()) {
try {

Back to the top