Skip to content

Commit

Permalink
Increment version to 2.12 (#1296)
Browse files Browse the repository at this point in the history
Increment version to 2.12 and fix build failure (#1296)

Signed-off-by: monusingh-1 <[email protected]>
  • Loading branch information
monusingh-1 authored Dec 12, 2023
1 parent 95028c8 commit cb5af60
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import org.opensearch.gradle.test.RestIntegTestTask
buildscript {
ext {
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
opensearch_version = System.getProperty("opensearch.version", "2.11.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "2.12.0-SNAPSHOT")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
// e.g. 2.0.0-rc1-SNAPSHOT -> 2.0.0.0-rc1-SNAPSHOT
version_tokens = opensearch_version.tokenize('-')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ import org.opensearch.index.shard.IndexShard
import org.opensearch.index.translog.Translog
import org.opensearch.indices.IndicesService
import org.opensearch.indices.SystemIndices
import org.opensearch.telemetry.tracing.noop.NoopTracer
import org.opensearch.threadpool.ThreadPool
import org.opensearch.transport.TransportService
import java.util.function.Function
Expand All @@ -72,7 +73,7 @@ class TransportReplayChangesAction @Inject constructor(settings: Settings, trans
TransportWriteAction<ReplayChangesRequest, ReplayChangesRequest, ReplayChangesResponse>(
settings, ReplayChangesAction.NAME, transportService, clusterService, indicesService, threadPool, shardStateAction,
actionFilters, Writeable.Reader { inp -> ReplayChangesRequest(inp) }, Writeable.Reader { inp -> ReplayChangesRequest(inp) },
EXECUTOR_NAME_FUNCTION, false, indexingPressureService, systemIndices) {
EXECUTOR_NAME_FUNCTION, false, indexingPressureService, systemIndices, NoopTracer.INSTANCE) {

companion object {
private val log = LogManager.getLogger(TransportReplayChangesAction::class.java)!!
Expand Down

0 comments on commit cb5af60

Please sign in to comment.