From f2e7d5477f076789da5d0e95fe61a56ddb939f5a Mon Sep 17 00:00:00 2001 From: Eng Zer Jun Date: Wed, 22 Sep 2021 13:38:34 +0800 Subject: refactor: move from io/ioutil to io and os package (#17109) The io/ioutil package has been deprecated as of Go 1.16, see https://golang.org/doc/go1.16#ioutil. This commit replaces the existing io/ioutil functions with their new definitions in io and os packages. Signed-off-by: Eng Zer Jun Co-authored-by: techknowlogick --- modules/private/restore_repo.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/private/restore_repo.go') diff --git a/modules/private/restore_repo.go b/modules/private/restore_repo.go index b5592278ab..6ebf4c63d5 100644 --- a/modules/private/restore_repo.go +++ b/modules/private/restore_repo.go @@ -7,7 +7,7 @@ package private import ( "context" "fmt" - "io/ioutil" + "io" "net/http" "time" @@ -47,7 +47,7 @@ func RestoreRepo(ctx context.Context, repoDir, ownerName, repoName string, units var ret = struct { Err string `json:"err"` }{} - body, err := ioutil.ReadAll(resp.Body) + body, err := io.ReadAll(resp.Body) if err != nil { return http.StatusInternalServerError, fmt.Sprintf("Response body error: %v", err.Error()) } -- cgit v1.2.3