X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/911abf131639401b2ccfd23a6bc3ec983f7ed8f4..0195e1bbf4c1e5810f637212e9605d2d2dc03e7e:/lib/controller/cmd.go diff --git a/lib/controller/cmd.go b/lib/controller/cmd.go index 94eb2580bd..f0268091be 100644 --- a/lib/controller/cmd.go +++ b/lib/controller/cmd.go @@ -5,6 +5,8 @@ package controller import ( + "context" + "git.curoverse.com/arvados.git/lib/cmd" "git.curoverse.com/arvados.git/lib/service" "git.curoverse.com/arvados.git/sdk/go/arvados" @@ -12,6 +14,6 @@ import ( var Command cmd.Handler = service.Command(arvados.ServiceNameController, newHandler) -func newHandler(cluster *arvados.Cluster, np *arvados.NodeProfile) service.Handler { +func newHandler(_ context.Context, cluster *arvados.Cluster, np *arvados.NodeProfile, _ string) service.Handler { return &Handler{Cluster: cluster, NodeProfile: np} }