Skip to content

Commit

Permalink
[FLINK-6337] [network] Fix instability in SuccessAfterNetworkBuffersF…
Browse files Browse the repository at this point in the history
…ailureITCase

The reduced number of network buffers as part of this issue was too low and
lead to instable tests.
  • Loading branch information
uce committed May 2, 2017
1 parent 2d33c0b commit aa8f81c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@

public class SuccessAfterNetworkBuffersFailureITCase extends TestLogger {


@Test
public void testSuccessfulProgramAfterFailure() {
LocalFlinkMiniCluster cluster = null;
Expand All @@ -52,7 +51,7 @@ public void testSuccessfulProgramAfterFailure() {
config.setInteger(ConfigConstants.LOCAL_NUMBER_TASK_MANAGER, 2);
config.setLong(TaskManagerOptions.MANAGED_MEMORY_SIZE, 80L);
config.setInteger(ConfigConstants.TASK_MANAGER_NUM_TASK_SLOTS, 8);
config.setInteger(TaskManagerOptions.NETWORK_NUM_BUFFERS, 640);
config.setInteger(TaskManagerOptions.NETWORK_NUM_BUFFERS, 800);

cluster = new LocalFlinkMiniCluster(config, false);

Expand Down

0 comments on commit aa8f81c

Please sign in to comment.