File tree 1 file changed +3
-3
lines changed
src/test/java/org/elasticsearch/repositories/s3
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 41
41
import org .elasticsearch .snapshots .SnapshotState ;
42
42
import org .elasticsearch .test .ElasticsearchIntegrationTest .ClusterScope ;
43
43
import org .elasticsearch .test .ElasticsearchIntegrationTest .Scope ;
44
- import org .elasticsearch .test .store .MockDirectoryHelper ;
44
+ import org .elasticsearch .test .store .MockFSDirectoryService ;
45
45
import org .junit .After ;
46
46
import org .junit .Before ;
47
47
import org .junit .Test ;
@@ -62,8 +62,8 @@ public Settings indexSettings() {
62
62
// During restore we frequently restore index to exactly the same state it was before, that might cause the same
63
63
// checksum file to be written twice during restore operation
64
64
return ImmutableSettings .builder ().put (super .indexSettings ())
65
- .put (MockDirectoryHelper .RANDOM_PREVENT_DOUBLE_WRITE , false )
66
- .put (MockDirectoryHelper .RANDOM_NO_DELETE_OPEN_FILE , false )
65
+ .put (MockFSDirectoryService .RANDOM_PREVENT_DOUBLE_WRITE , false )
66
+ .put (MockFSDirectoryService .RANDOM_NO_DELETE_OPEN_FILE , false )
67
67
.put ("cloud.enabled" , true )
68
68
.put ("plugins." + PluginsService .LOAD_PLUGIN_FROM_CLASSPATH , true )
69
69
.build ();
You can’t perform that action at this time.
0 commit comments