Reduce mapreduce shards in tests

This fixes a significant memory consumption issue when running tests.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=129482832
This commit is contained in:
Ben McIlwain
2016-08-05 20:41:53 -04:00
committed by Justine Tunney
parent 1ef8716177
commit 92fa0d6781
5 changed files with 5 additions and 5 deletions
@@ -65,7 +65,7 @@ public class DnsRefreshForHostRenameActionTest
private void runMapreduce(String hostKeyString) throws Exception {
action = new DnsRefreshForHostRenameAction();
action.hostKeyString = hostKeyString;
action.mrRunner = new MapreduceRunner(Optional.<Integer>absent(), Optional.<Integer>absent());
action.mrRunner = new MapreduceRunner(Optional.<Integer>of(5), Optional.<Integer>absent());
action.response = new FakeResponse();
action.run();
executeTasksUntilEmpty("mapreduce");