1313import com .carrotsearch .randomizedtesting .annotations .Name ;
1414
1515import org .apache .http .util .EntityUtils ;
16- import org .apache .lucene .tests .util .LuceneTestCase ;
1716import org .elasticsearch .client .Request ;
18- import org .elasticsearch .core .UpdateForV9 ;
1917import org .elasticsearch .test .cluster .ElasticsearchCluster ;
2018import org .elasticsearch .test .cluster .FeatureFlag ;
2119import org .elasticsearch .test .cluster .local .distribution .DistributionType ;
3432
3533import static org .hamcrest .Matchers .contains ;
3634
37- @ UpdateForV9 (owner = UpdateForV9 .Owner .DATA_MANAGEMENT )
38- @ LuceneTestCase .AwaitsFix (bugUrl = "we need to figure out the index migrations here for 9.0" )
3935public class FullClusterRestartIT extends ParameterizedFullClusterRestartTestCase {
4036
4137 private static final boolean useFixture = Boolean .getBoolean ("geoip_use_service" ) == false ;
@@ -46,9 +42,8 @@ public class FullClusterRestartIT extends ParameterizedFullClusterRestartTestCas
4642 .distribution (DistributionType .DEFAULT )
4743 .version (getOldClusterTestVersion ())
4844 .nodes (2 )
49- .setting ("indices.memory.shard_inactive_time" , "60m" )
50- .setting ("xpack.security.enabled" , "false" )
5145 .setting ("ingest.geoip.downloader.endpoint" , () -> fixture .getAddress (), s -> useFixture )
46+ .setting ("xpack.security.enabled" , "false" )
5247 .feature (FeatureFlag .TIME_SERIES_MODE )
5348 .build ();
5449
@@ -97,7 +92,7 @@ public void testGeoIpSystemFeaturesMigration() throws Exception {
9792 Request migrateSystemFeatures = new Request ("POST" , "/_migration/system_features" );
9893 assertOK (client ().performRequest (migrateSystemFeatures ));
9994
100- assertBusy (() -> testCatIndices (".geoip_databases-reindexed-for-8 " , "my-index-00001" ));
95+ assertBusy (() -> testCatIndices (".geoip_databases-reindexed-for-10 " , "my-index-00001" ));
10196 assertBusy (() -> testIndexGeoDoc ());
10297
10398 Request disableDownloader = new Request ("PUT" , "/_cluster/settings" );
0 commit comments