Skip to content

Commit ae4d8ff

Browse files
committed
increase get ref page limit
1 parent 76261a0 commit ae4d8ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

code/go/0chain.net/blobbercore/handler/storage_handler.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ const (
2929
OffsetDateLayout = "2006-01-02T15:04:05.99999Z07:00"
3030
DownloadContentFull = "full"
3131
DownloadContentThumb = "thumbnail"
32-
MaxPageLimit = 100 //100 rows will make up to 100 KB
33-
DefaultPageLimit = 20
34-
DefaultListPageLimit = 50
32+
MaxPageLimit = 1000 //1000 rows will make up to 1000 KB
33+
DefaultPageLimit = 100
34+
DefaultListPageLimit = 100
3535
)
3636

3737
type StorageHandler struct{}

0 commit comments

Comments
 (0)