Log parser with maxBytes variable

This commit is contained in:
Thomas Miceli
2023-04-05 18:20:50 +02:00
parent c3940933bb
commit 9fadfe7cde
2 changed files with 3 additions and 3 deletions

View File

@ -126,7 +126,7 @@ func GetLog(user string, gist string, skip string) ([]*Commit, error) {
return nil, err
}
return parseLog(stdout), nil
return parseLog(stdout, 2<<18), nil
}
func CloneTmp(user string, gist string, gistTmpId string, email string) error {