Skip to content

Commit

Permalink
Fixing IndicesServiceTests
Browse files Browse the repository at this point in the history
Signed-off-by: Shourya Dutta Biswas <114977491+shourya035@users.noreply.github.com>
  • Loading branch information
shourya035 committed Sep 5, 2023
1 parent c1ba952 commit 0073da6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- [Remote Store] Add Segment download stats to remotestore stats API ([#8718](https://github.com/opensearch-project/OpenSearch/pull/8718))
- [Remote Store] Add remote segment transfer stats on NodesStats API ([#9168](https://github.com/opensearch-project/OpenSearch/pull/9168) [#9393](https://github.com/opensearch-project/OpenSearch/pull/9393) [#9454](https://github.com/opensearch-project/OpenSearch/pull/9454))
- Return 409 Conflict HTTP status instead of 503 on failure to concurrently execute snapshots ([#8986](https://github.com/opensearch-project/OpenSearch/pull/5855))
- [Remote Store] Removing feature flag to mark feature GA ([#9761](https://github.com/opensearch-project/OpenSearch/pull/9761))

### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,8 +620,8 @@ public void testConflictingEngineFactories() {
assertThat(e, hasToString(new RegexMatcher(pattern)));
}

public void testClusterRemoteTranslogBufferIntervalNull() {
public void testClusterRemoteTranslogBufferIntervalDefault() {
IndicesService indicesService = getIndicesService();
assertNull(indicesService.getClusterRemoteTranslogBufferInterval());
assertEquals(IndexSettings.DEFAULT_REMOTE_TRANSLOG_BUFFER_INTERVAL, indicesService.getClusterRemoteTranslogBufferInterval());
}
}

0 comments on commit 0073da6

Please sign in to comment.