Skip to content

Commit

Permalink
Use fs repository
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Ershov committed May 23, 2019
1 parent 94e60dd commit 3bbea57
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1345,11 +1345,7 @@ public void testGetSnapshotsMultipleRepos() {
final Path repoPath = randomRepoPath();
logger.info("--> create repository with name " + repoName);
assertAcked(client.admin().cluster().preparePutRepository(repoName)
.setType("mock").setSettings(Settings.builder()
.put("location", repoPath)
.put("compress", false)
.put("chunk_size", randomIntBetween(100, 1000), ByteSizeUnit.BYTES)
.put("wait_after_unblock", 200)));
.setType("fs").setSettings(Settings.builder().put("location", repoPath).build()));
List<String> snapshotNames = new ArrayList<>();
repo2SnapshotNames.put(repoName, snapshotNames);

Expand Down

0 comments on commit 3bbea57

Please sign in to comment.