File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
qa/rolling-upgrade-legacy/src/test/java/org/elasticsearch/upgrades Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 88package org .elasticsearch .upgrades ;
99
1010import org .apache .http .util .EntityUtils ;
11+ import org .apache .lucene .tests .util .LuceneTestCase ;
1112import org .elasticsearch .Version ;
1213import org .elasticsearch .action .support .PlainActionFuture ;
1314import org .elasticsearch .client .Request ;
5253/**
5354 * In depth testing of the recovery mechanism during a rolling restart.
5455 */
56+ @ LuceneTestCase .AwaitsFix (bugUrl = "https://github.com/elastic/elasticsearch/issues/99778" )
5557public class RecoveryIT extends AbstractRollingTestCase {
5658
5759 private static String CLUSTER_NAME = System .getProperty ("tests.clustername" );
@@ -752,7 +754,7 @@ public void testSoftDeletesDisabledWarning() throws Exception {
752754 */
753755 private static void updateIndexSettingsPermittingSlowlogDeprecationWarning (String index , Settings .Builder settings ) throws IOException {
754756 Request request = new Request ("PUT" , "/" + index + "/_settings" );
755- request .setJsonEntity (org . elasticsearch . common . Strings .toString (settings .build ()));
757+ request .setJsonEntity (Strings .toString (settings .build ()));
756758 if (UPGRADE_FROM_VERSION .before (Version .V_7_17_9 )) {
757759 // There is a bug (fixed in 7.17.9 and 8.7.0 where deprecation warnings could leak into ClusterApplierService#applyChanges)
758760 // Below warnings are set (and leaking) from an index in this test case
You can’t perform that action at this time.
0 commit comments