Remove usages of obsolete settings (#29087)
The settings `indices.recovery.concurrent_streams` and
`indices.recovery.concurrent_small_file_streams` were removed in
f5e4cd4616
. This commit removes their last traces
from the codebase.
This commit is contained in:
parent
2c1ef3d4c6
commit
158bb23887
|
@ -332,10 +332,8 @@ public class RecoverySourceHandlerTests extends ESTestCase {
|
|||
}
|
||||
|
||||
|
||||
public void testHandleExceptinoOnSendSendFiles() throws Throwable {
|
||||
Settings settings = Settings.builder().put("indices.recovery.concurrent_streams", 1).
|
||||
put("indices.recovery.concurrent_small_file_streams", 1).build();
|
||||
final RecoverySettings recoverySettings = new RecoverySettings(settings, service);
|
||||
public void testHandleExceptionOnSendFiles() throws Throwable {
|
||||
final RecoverySettings recoverySettings = new RecoverySettings(Settings.EMPTY, service);
|
||||
final StartRecoveryRequest request = getStartRecoveryRequest();
|
||||
Path tempDir = createTempDir();
|
||||
Store store = newStore(tempDir, false);
|
||||
|
|
Loading…
Reference in New Issue