From c245013e599a56fffc267cfc96a1450030590e02 Mon Sep 17 00:00:00 2001 From: Qiu Jian Date: Thu, 20 Feb 2020 15:16:01 +0800 Subject: [PATCH] fix: reset paging limit to 2048 from 20 --- pkg/cloudcommon/consts/consts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cloudcommon/consts/consts.go b/pkg/cloudcommon/consts/consts.go index 80a2e314c7..0a2396e460 100644 --- a/pkg/cloudcommon/consts/consts.go +++ b/pkg/cloudcommon/consts/consts.go @@ -29,7 +29,7 @@ var ( nonDefaultDomainProjects = false - defaultPagingLimit int64 = 20 + defaultPagingLimit int64 = 2048 maxPagingLimit int64 = 2048 )