X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/cb690390d4f253c3bbb9c543e243cf988f39fbb3..60b6f4e619f1a22405e831eda2186d61f7f1ea48:/lib/controller/router/router.go diff --git a/lib/controller/router/router.go b/lib/controller/router/router.go index d39f493a95..054bcffaf7 100644 --- a/lib/controller/router/router.go +++ b/lib/controller/router/router.go @@ -318,6 +318,13 @@ func (rtr *router) addRoutes() { return rtr.backend.ContainerRequestDelete(ctx, *opts.(*arvados.DeleteOptions)) }, }, + { + arvados.EndpointContainerRequestContainerStatus, + func() interface{} { return &arvados.GetOptions{} }, + func(ctx context.Context, opts interface{}) (interface{}, error) { + return rtr.backend.ContainerRequestContainerStatus(ctx, *opts.(*arvados.GetOptions)) + }, + }, { arvados.EndpointContainerRequestLog, func() interface{} { return &arvados.ContainerLogOptions{} },