From 661232b1e98197e242a8117450e64ff19dd2bc92 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Thu, 6 Apr 2017 11:23:46 +0900 Subject: [PATCH] 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 --- .../tst/org/eclipse/jgit/transport/PushConnectionTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.39.5