Skip to content

Commit

Permalink
Fix build failure (#1281)
Browse files Browse the repository at this point in the history
Signed-off-by: monusingh-1 <msnghgw@amazon.com>
  • Loading branch information
monusingh-1 committed Oct 27, 2023
1 parent e1d2596 commit 12ebd7e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ import org.opensearch.common.settings.Settings
import org.opensearch.common.xcontent.XContentType
import org.opensearch.index.IndexingPressureService
import org.opensearch.index.engine.Engine
import org.opensearch.index.engine.Engine.NoOp
import org.opensearch.index.mapper.MapperParsingException
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 +74,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 12ebd7e

Please sign in to comment.