diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2017-04-06 11:23:46 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2017-04-06 11:45:02 +0900 |
commit | 661232b1e98197e242a8117450e64ff19dd2bc92 (patch) | |
tree | f683a0ea29d0bd3cca934e2e47f217798e55322e | |
parent | 6a311a071f8489d4f69225eb9c5a5c93773c012f (diff) | |
download | jgit-661232b1e98197e242a8117450e64ff19dd2bc92.tar.gz 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.java | 2 |
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 { |