Skip to content

Commit

Permalink
Reduced the maxRows limit from 100k to 2.5k
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriquerPimentel committed May 8, 2024
1 parent 7f3d41f commit 5dc9353
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom/conf/app.example.ini
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ LEVEL = Info
;MAX_FILE_SIZE = 524288
;;
;; Maximum allowed rows to render CSV files. (Set to 0 for no limit)
;MAX_ROWS = 100000
;MAX_ROWS = 2500

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Expand Down
2 changes: 1 addition & 1 deletion modules/setting/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ var UI = struct {
MaxRows int
}{
MaxFileSize: 524288,
MaxRows: 100000,
MaxRows: 2500,
},
Admin: struct {
UserPagingNum int
Expand Down

0 comments on commit 5dc9353

Please sign in to comment.