Skip to content

Commit

Permalink
Remove usages of obsolete settings
Browse files Browse the repository at this point in the history
The settings `indices.recovery.concurrent_streams` and
`indices.recovery.concurrent_small_file_streams` were removed in
f5e4cd4. This commit removes their last traces
from the codebase.

Relates elastic#28781
  • Loading branch information
DaveCTurner committed Mar 15, 2018
1 parent 42fe661 commit 60f5d5f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,7 @@ public void close() throws IOException {


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);
final RecoverySettings recoverySettings = new RecoverySettings(Settings.EMPTY, service);
final StartRecoveryRequest request = getStartRecoveryRequest();
Path tempDir = createTempDir();
Store store = newStore(tempDir, false);
Expand Down

0 comments on commit 60f5d5f

Please sign in to comment.