Github user pnowojski commented on a diff in the pull request: https://github.com/apache/flink/pull/4761#discussion_r154027358 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/io/network/partition/consumer/SingleInputGateTest.java --- @@ -325,9 +325,10 @@ public void testRequestBackoffConfiguration() throws Exception { int initialBackoff = 137; int maxBackoff = 1001; + TaskEventDispatcher taskEventDispatcher = new TaskEventDispatcher(); NetworkEnvironment netEnv = mock(NetworkEnvironment.class); when(netEnv.getResultPartitionManager()).thenReturn(new ResultPartitionManager()); - when(netEnv.getTaskEventDispatcher()).thenReturn(new TaskEventDispatcher()); + when(netEnv.getTaskEventDispatcher()).thenReturn(taskEventDispatcher); --- End diff -- what is the purpose of this change?
---