zhijiangW commented on a change in pull request #8191: [FLINK-12213][network] 
Pass TaskManagerMetricGroup into constructor of NetworkEnvironment
URL: https://github.com/apache/flink/pull/8191#discussion_r276283610
 
 

 ##########
 File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/NetworkEnvironment.java
 ##########
 @@ -63,11 +70,19 @@
 
        private boolean isShutdown;
 
-       public NetworkEnvironment(NetworkEnvironmentConfiguration config, 
TaskEventPublisher taskEventPublisher) {
+       public NetworkEnvironment(
+                       NetworkEnvironmentConfiguration config,
+                       TaskEventPublisher taskEventPublisher,
+                       TaskManagerMetricGroup taskManagerMetricGroup) {
                this.config = checkNotNull(config);
 
                this.networkBufferPool = new 
NetworkBufferPool(config.numNetworkBuffers(), config.networkBufferSize());
 
+               checkNotNull(taskManagerMetricGroup);
 
 Review comment:
   Sorry, what is moved into private method?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to