We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79d3bf3 commit 8b5c2adCopy full SHA for 8b5c2ad
checks/http.go
@@ -116,7 +116,7 @@ func HttpTest(
116
// about more than 100,000 stringified characters of it, so this protects against giant bodies
117
func truncateAndStringifyBody(body []byte) string {
118
bodyString := string(body)
119
- const maxBodyLength = 100000
+ const maxBodyLength = 1000000
120
if len(bodyString) > maxBodyLength {
121
bodyString = bodyString[:maxBodyLength]
122
}
0 commit comments