🔥 只初始化一次client

This commit is contained in:
微凉
2021-04-09 10:38:57 +08:00
parent 0bb02664c7
commit 974caf74d9
2 changed files with 6 additions and 9 deletions

View File

@ -1,6 +1,7 @@
package bootstrap
import (
"crypto/tls"
"github.com/Xhofe/alist/conf"
log "github.com/sirupsen/logrus"
"net/http"
@ -9,5 +10,8 @@ import (
// init request client
func InitClient() {
log.Infof("初始化client...")
conf.Client = &http.Client{}
tr := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
conf.Client = &http.Client{Transport: tr}
}