Setting per-paging for logs to load 10K initially like the old apis (#6697)

* Setting per-paging for logs to load 10K initially like the old apis

* Fixing unit test
This commit is contained in:
Corey Hulen
2017-06-20 13:13:02 -07:00
committed by GitHub
parent 68ea0abfa6
commit b5d2c12d22
2 changed files with 11 additions and 8 deletions

View File

@@ -19,6 +19,9 @@ import (
)
func GetLogs(page, perPage int) ([]string, *model.AppError) {
perPage = 10000
var lines []string
if einterfaces.GetClusterInterface() != nil && *utils.Cfg.ClusterSettings.Enable {
lines = append(lines, "-----------------------------------------------------------------------------------------------------------")