refactor: move from io/ioutil to io and os package (#1772)

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 <engzerjun@gmail.com>
This commit is contained in:
Eng Zer Jun
2021-09-27 08:55:23 +08:00
committed by GitHub
parent a2cce0ba77
commit 62af723017
25 changed files with 45 additions and 57 deletions

View File

@@ -5,7 +5,6 @@ import (
"errors"
"fmt"
"io"
"io/ioutil"
"os/exec"
"sync"
@@ -79,7 +78,7 @@ func (t *rawPluginTask) Start() error {
go func() {
defer t.waitGroup.Done()
defer close(t.done)
stdoutData, _ := ioutil.ReadAll(stdout)
stdoutData, _ := io.ReadAll(stdout)
stdoutString := string(stdoutData)
output := t.getOutput(stdoutString)