From 417ca9d9532f54e6adcad66cd9e916c988c4385b Mon Sep 17 00:00:00 2001 From: Sagar Upadhyaya Date: Mon, 6 May 2024 12:10:56 -0700 Subject: [PATCH] Updating log statement around test Signed-off-by: Sagar Upadhyaya --- .../java/org/opensearch/indices/IndicesRequestCacheIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/internalClusterTest/java/org/opensearch/indices/IndicesRequestCacheIT.java b/server/src/internalClusterTest/java/org/opensearch/indices/IndicesRequestCacheIT.java index 44e4d02620805..2172b8350097a 100644 --- a/server/src/internalClusterTest/java/org/opensearch/indices/IndicesRequestCacheIT.java +++ b/server/src/internalClusterTest/java/org/opensearch/indices/IndicesRequestCacheIT.java @@ -1270,7 +1270,7 @@ public void testDeleteAndCreateSameIndexShardOnSameNode() throws Exception { ensureGreen(indexName); - logger.info("Writing few docs and searching which will cache items"); + logger.info("Writing few docs and searching those which will cache items in RequestCache"); indexRandom(true, client.prepareIndex(indexName).setSource("k", "hello")); indexRandom(true, client.prepareIndex(indexName).setSource("y", "hello again")); SearchResponse resp = client.prepareSearch(indexName).setRequestCache(true).setQuery(QueryBuilders.termQuery("k", "hello")).get();