From 9c3c0e489ddd52c1d46732cec5c87710243aac27 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Wed, 11 May 2022 10:02:00 -0300 Subject: [PATCH] 19103: Fixes the default Limit param for ACA list requests. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- lib/controller/router/router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/controller/router/router.go b/lib/controller/router/router.go index 05bdb4754f..586ea8e676 100644 --- a/lib/controller/router/router.go +++ b/lib/controller/router/router.go @@ -407,7 +407,7 @@ func (rtr *router) addRoutes() { }, { arvados.EndpointAPIClientAuthorizationList, - func() interface{} { return &arvados.ListOptions{} }, + func() interface{} { return &arvados.ListOptions{Limit: -1} }, func(ctx context.Context, opts interface{}) (interface{}, error) { return rtr.backend.APIClientAuthorizationList(ctx, *opts.(*arvados.ListOptions)) }, -- 2.30.2