diff options
author | Joe Chen <jc@unknwon.io> | 2022-10-22 21:34:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 21:34:53 +0800 |
commit | 11edc09681232191cec70b9b9ce0835af4082e04 (patch) | |
tree | 6e015c0d9bc4531673258e0f180465a6d5e2d87a /internal/db | |
parent | b9f5cfddc18c55eee62e1fb64a254fee9782c46c (diff) |
refactor: replace `ioutil.ReadAll` with `io.ReadAll` (#7200)
Diffstat (limited to 'internal/db')
-rw-r--r-- | internal/db/webhook.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/webhook.go b/internal/db/webhook.go index 3e816061..c26cb5b4 100644 --- a/internal/db/webhook.go +++ b/internal/db/webhook.go @@ -10,7 +10,7 @@ import ( "crypto/tls" "encoding/hex" "fmt" - "io/ioutil" + "io" "net/url" "strings" "time" @@ -775,7 +775,7 @@ func (t *HookTask) deliver() { t.ResponseInfo.Headers[k] = strings.Join(vals, ",") } - p, err := ioutil.ReadAll(resp.Body) + p, err := io.ReadAll(resp.Body) if err != nil { t.ResponseInfo.Body = fmt.Sprintf("read body: %s", err) return |