|  | @@ -13,8 +13,6 @@ import org.elasticsearch.client.Request;
 | 
	
		
			
				|  |  |  import org.elasticsearch.client.ResponseException;
 | 
	
		
			
				|  |  |  import org.elasticsearch.cluster.metadata.IndexMetadata;
 | 
	
		
			
				|  |  |  import org.elasticsearch.common.settings.Settings;
 | 
	
		
			
				|  |  | -import org.elasticsearch.index.IndexSettings;
 | 
	
		
			
				|  |  | -import org.elasticsearch.index.translog.Translog;
 | 
	
		
			
				|  |  |  import org.elasticsearch.repositories.fs.FsRepository;
 | 
	
		
			
				|  |  |  import org.elasticsearch.test.cluster.util.Version;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -189,11 +187,7 @@ public class RollingUpgradeLuceneIndexCompatibilityTestCase extends RollingUpgra
 | 
	
		
			
				|  |  |              createIndex(
 | 
	
		
			
				|  |  |                  client(),
 | 
	
		
			
				|  |  |                  index,
 | 
	
		
			
				|  |  | -                Settings.builder()
 | 
	
		
			
				|  |  | -                    .put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1)
 | 
	
		
			
				|  |  | -                    .put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0)
 | 
	
		
			
				|  |  | -                    .put(IndexSettings.INDEX_TRANSLOG_DURABILITY_SETTING.getKey(), randomFrom(Translog.Durability.values()))
 | 
	
		
			
				|  |  | -                    .build()
 | 
	
		
			
				|  |  | +                Settings.builder().put(IndexMetadata.SETTING_NUMBER_OF_SHARDS, 1).put(IndexMetadata.SETTING_NUMBER_OF_REPLICAS, 0).build()
 | 
	
		
			
				|  |  |              );
 | 
	
		
			
				|  |  |              indexDocs(index, numDocs);
 | 
	
		
			
				|  |  |              return;
 |