Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions service/frontend/fx.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ func NewServiceProvider(
httpAPIServer *HTTPAPIServer,
handler Handler,
adminHandler *AdminHandler,
operatorHandler *OperatorHandlerImpl,
operatorHandler OperatorHandler,
versionChecker *VersionChecker,
visibilityMgr manager.VisibilityManager,
logger log.SnTaggedLogger,
Expand Down Expand Up @@ -660,7 +660,7 @@ func OperatorHandlerProvider(
clientFactory client.Factory,
namespaceRegistry namespace.Registry,
nexusEndpointClient *NexusEndpointClient,
) *OperatorHandlerImpl {
) OperatorHandler {
args := NewOperatorHandlerImplArgs{
configuration,
esClient,
Expand Down Expand Up @@ -819,7 +819,7 @@ func HTTPAPIServerProvider(
grpcListener net.Listener,
tlsConfigProvider encryption.TLSConfigProvider,
handler Handler,
operatorHandler *OperatorHandlerImpl,
operatorHandler OperatorHandler,
grpcServerOptions GrpcServerOptions,
metricsHandler metrics.Handler,
namespaceRegistry namespace.Registry,
Expand Down
2 changes: 1 addition & 1 deletion service/frontend/http_api_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func NewHTTPAPIServer(
grpcListener net.Listener,
tlsConfigProvider encryption.TLSConfigProvider,
handler Handler,
operatorHandler *OperatorHandlerImpl,
operatorHandler OperatorHandler,
interceptors []grpc.UnaryServerInterceptor,
metricsHandler metrics.Handler,
router *mux.Router,
Expand Down
4 changes: 2 additions & 2 deletions service/frontend/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ type Service struct {
healthServer *health.Server
handler Handler
adminHandler *AdminHandler
operatorHandler *OperatorHandlerImpl
operatorHandler OperatorHandler
versionChecker *VersionChecker
visibilityManager manager.VisibilityManager
server *grpc.Server
Expand All @@ -395,7 +395,7 @@ func NewService(
httpAPIServer *HTTPAPIServer,
handler Handler,
adminHandler *AdminHandler,
operatorHandler *OperatorHandlerImpl,
operatorHandler OperatorHandler,
versionChecker *VersionChecker,
visibilityMgr manager.VisibilityManager,
logger log.Logger,
Expand Down