Skip to content
Snippets Groups Projects
Unverified Commit 8731f003 authored by Stefan Prodan's avatar Stefan Prodan
Browse files

Remove deprecated `io/ioutil` from `flux tree`

parent 75a18b45
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ import (
"encoding/base64"
"encoding/json"
"fmt"
"io/ioutil"
"io"
"strings"
"github.com/fluxcd/flux2/internal/tree"
......@@ -256,7 +256,7 @@ func getHelmReleaseInventory(ctx context.Context, objectKey client.ObjectKey, ku
return nil, err
}
defer r.Close()
b2, err := ioutil.ReadAll(r)
b2, err := io.ReadAll(r)
if err != nil {
return nil, err
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment