increase size limit for MG response
This commit is contained in:
commit
f9ebf631ba
@ -8,11 +8,12 @@ import (
|
||||
)
|
||||
|
||||
const MB = 1 << 20
|
||||
const LimitResponse = 3 * MB
|
||||
|
||||
func buildLimitedRawResponse(resp *http.Response) ([]byte, error) {
|
||||
defer resp.Body.Close()
|
||||
|
||||
limitReader := io.LimitReader(resp.Body, MB)
|
||||
limitReader := io.LimitReader(resp.Body, LimitResponse)
|
||||
body, err := ioutil.ReadAll(limitReader)
|
||||
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user