TanYuxin-tyx commented on code in PR #24900: URL: https://github.com/apache/flink/pull/24900#discussion_r1635860182
########## flink-runtime/src/test/java/org/apache/flink/runtime/util/NettyShuffleDescriptorBuilder.java: ########## @@ -80,8 +83,14 @@ public NettyShuffleDescriptor buildRemote() { } public NettyShuffleDescriptor buildLocal() { + List<TierShuffleDescriptor> tierShuffleDescriptors = new ArrayList<>(); + tierShuffleDescriptors.add(NoOpTierShuffleDescriptor.INSTANCE); + tierShuffleDescriptors.add(NoOpTierShuffleDescriptor.INSTANCE); Review Comment: Since the memory tier and the disk tier is used by default in the test, each tier needs its tier shuffle descriptors. -- 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. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org