@@ -132,7 +132,6 @@ public void testCancelGrpc() throws InterruptedException {
132
132
assertEquals (2 , result .getSuccessBlockIds ().size ());
133
133
134
134
enableFirstNSendDataRequestsToFail (2 );
135
- System .out .println ("1====================" );
136
135
CompletableFuture <SendShuffleDataResult > future =
137
136
CompletableFuture .supplyAsync (
138
137
() -> shuffleWriteClientImpl .sendShuffleData (testAppId , blocks , needCancelRequest ));
@@ -225,8 +224,7 @@ public void testRpcRetryLogic(StorageType storageType) {
225
224
}
226
225
227
226
private static void enableFirstNReadRequestsToFail (int failedCount ) {
228
- Lists .newArrayList (grpcShuffleServers , nettyShuffleServers ).stream ()
229
- .flatMap (List ::stream )
227
+ grpcShuffleServers .stream ()
230
228
.forEach (
231
229
server ->
232
230
((MockedGrpcServer ) server .getServer ())
@@ -235,8 +233,7 @@ private static void enableFirstNReadRequestsToFail(int failedCount) {
235
233
}
236
234
237
235
private static void enableFirstNSendDataRequestsToFail (int failedCount ) {
238
- Lists .newArrayList (grpcShuffleServers , nettyShuffleServers ).stream ()
239
- .flatMap (List ::stream )
236
+ grpcShuffleServers .stream ()
240
237
.forEach (
241
238
server ->
242
239
((MockedGrpcServer ) server .getServer ())
@@ -245,8 +242,7 @@ private static void enableFirstNSendDataRequestsToFail(int failedCount) {
245
242
}
246
243
247
244
private static void disableFirstNReadRequestsToFail () {
248
- Lists .newArrayList (grpcShuffleServers , nettyShuffleServers ).stream ()
249
- .flatMap (List ::stream )
245
+ grpcShuffleServers .stream ()
250
246
.forEach (
251
247
server ->
252
248
((MockedGrpcServer ) server .getServer ())
@@ -285,8 +281,6 @@ private void registerShuffleServer(
285
281
.unregisterTimeSec (10 )
286
282
.unregisterRequestTimeSec (10 ));
287
283
288
- System .out .println ("============" );
289
- System .out .println (grpcShuffleServerInfoList );
290
284
for (int i = 0 ; i < replica ; i ++) {
291
285
shuffleWriteClientImpl .registerShuffle (
292
286
grpcShuffleServerInfoList .get (i ),
0 commit comments