Replace deprecated ioutil with io and os (#20776)
* Replace ioutil with io and os * Replace ioutil in utils/file.go * Minor fix to tests and excluded files Co-authored-by: Tim Scheuermann <tim.scheuermann@mattermost.com> Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
15b6046a62
Коммит
b4570afa90
@@ -4,7 +4,7 @@
|
||||
package utils
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"io"
|
||||
"math"
|
||||
"net"
|
||||
"net/http"
|
||||
@@ -165,7 +165,7 @@ func GetURLWithCache(url string, cache *RequestCache, skip bool) ([]byte, error)
|
||||
return nil, errors.Errorf("Fetching notices failed with status code %d", resp.StatusCode)
|
||||
}
|
||||
|
||||
cache.Data, err = ioutil.ReadAll(resp.Body)
|
||||
cache.Data, err = io.ReadAll(resp.Body)
|
||||
if err != nil {
|
||||
cache.Data = nil
|
||||
return nil, err
|
||||
|
||||
Ссылка в новой задаче
Block a user