@@ -1382,6 +1382,7 @@ public void testShardStoreFetchMultiNodeMultiIndexesUsingBatchAction() throws Ex
1382
1382
String indexName1 = "test1" ;
1383
1383
String indexName2 = "test2" ;
1384
1384
DiscoveryNode [] nodes = getDiscoveryNodes ();
1385
+ System .out .println ();
1385
1386
TransportNodesListShardStoreMetadataBatch .NodesStoreFilesMetadataBatch response = prepareAndSendRequest (
1386
1387
new String [] { indexName1 , indexName2 },
1387
1388
nodes
@@ -1392,6 +1393,7 @@ public void testShardStoreFetchMultiNodeMultiIndexesUsingBatchAction() throws Ex
1392
1393
ShardRouting [] shardRoutings = clusterSearchShardsGroup .getShards ();
1393
1394
assertEquals (2 , shardRoutings .length );
1394
1395
for (ShardRouting shardRouting : shardRoutings ) {
1396
+ System .out .println ("----------------" + shardRouting .shortSummary ());
1395
1397
TransportNodesListShardStoreMetadataBatch .NodeStoreFilesMetadata nodeStoreFilesMetadata = response .getNodesMap ()
1396
1398
.get (shardRouting .currentNodeId ())
1397
1399
.getNodeStoreFilesMetadataBatch ()
@@ -1532,8 +1534,11 @@ private void assertNodeStoreFilesMetadataSuccessCase(
1532
1534
assertNull (nodeStoreFilesMetadata .getStoreFileFetchException ());
1533
1535
TransportNodesListShardStoreMetadataHelper .StoreFilesMetadata storeFileMetadata = nodeStoreFilesMetadata .storeFilesMetadata ();
1534
1536
assertFalse (storeFileMetadata .isEmpty ());
1537
+ System .out .println ("----------" + storeFileMetadata );
1535
1538
assertEquals (shardId , storeFileMetadata .shardId ());
1536
1539
assertNotNull (storeFileMetadata .peerRecoveryRetentionLeases ());
1540
+ System .out .println ("----------" + storeFileMetadata .peerRecoveryRetentionLeases ());
1541
+
1537
1542
}
1538
1543
1539
1544
private void assertNodeGatewayStartedShardsHappyCase (GatewayStartedShard gatewayStartedShard ) {
0 commit comments