aboutsummaryrefslogtreecommitdiff
path: root/internal/db
diff options
context:
space:
mode:
authorJoe Chen <jc@unknwon.io>2022-10-22 21:34:53 +0800
committerGitHub <noreply@github.com>2022-10-22 21:34:53 +0800
commit11edc09681232191cec70b9b9ce0835af4082e04 (patch)
tree6e015c0d9bc4531673258e0f180465a6d5e2d87a /internal/db
parentb9f5cfddc18c55eee62e1fb64a254fee9782c46c (diff)
refactor: replace `ioutil.ReadAll` with `io.ReadAll` (#7200)
Diffstat (limited to 'internal/db')
-rw-r--r--internal/db/webhook.go4
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