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