diff options
author | David Pursehouse <david.pursehouse@gmail.com> | 2017-04-05 07:58:29 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@gmail.com> | 2017-04-05 07:58:34 +0900 |
commit | cab9dee333513ad428d151ac4a6db00173fb6113 (patch) | |
tree | 0e9047a1baf057be5ee537bff5d398cbe6586c8b /org.eclipse.jgit.test/tst | |
parent | edb6593ef00ae6e16f6cbbf7250bbfbf19d2a346 (diff) | |
parent | 61a943e03d86b4ede1cf9a8184f00a7bb76143c1 (diff) | |
download | jgit-cab9dee333513ad428d151ac4a6db00173fb6113.tar.gz jgit-cab9dee333513ad428d151ac4a6db00173fb6113.zip |
Merge branch 'stable-4.7'
* stable-4.7:
PushConnectionTest#limitCommandBytes: Increase maxCommandBytes
Change-Id: I354f46475ee96eb3b31abd303b5df2f3023fcf75
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
Diffstat (limited to 'org.eclipse.jgit.test/tst')
-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 4aebc1d32c..908a1bab26 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", 170); + server.getConfig().setInt("receive", null, "maxCommandBytes", 180); try (Transport tn = testProtocol.open(uri, client, "server"); PushConnection connection = tn.openPush()) { try { |