diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2017-12-17 15:33:39 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2017-12-18 10:22:33 +0900 |
commit | 663cb669b13f8c0608b85e7f997a66f5cc307236 (patch) | |
tree | 8f74318b87cbce76c2d66b4f1a9ea7effa04bb51 /org.eclipse.jgit.test | |
parent | 098893617dfaf150eb1f48598dc91badb403dca2 (diff) | |
download | jgit-663cb669b13f8c0608b85e7f997a66f5cc307236.tar.gz jgit-663cb669b13f8c0608b85e7f997a66f5cc307236.zip |
PushConnectionTest: Increase maxCommandBytes yet again
It was already increased in 61a943e and 661232b but is still not
enough to take into account snapshot versions that are 100 or more
commits ahead of tag, i.e. 4.9.2.201712150930-r.105-gc1d37ca27
Change-Id: Ibeff73adae06b92fe5bb9c5eced9e4c6a08c437c
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.test')
-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 0e4e9ccd41..c16c1b2a93 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", 190); + server.getConfig().setInt("receive", null, "maxCommandBytes", 195); try (Transport tn = testProtocol.open(uri, client, "server"); PushConnection connection = tn.openPush()) { try { |