io/ioutil has already been deprecated in golang 1.16, so replace all ioutil with io and os
This commit is contained in:
@@ -19,7 +19,6 @@ package ipamperf
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"net"
|
||||
"os"
|
||||
"testing"
|
||||
@@ -101,7 +100,7 @@ func logResults(allResults []*Results) {
|
||||
}
|
||||
if resultsLogFile != "" {
|
||||
klog.Infof("Logging results to %s", resultsLogFile)
|
||||
if err := ioutil.WriteFile(resultsLogFile, jStr, os.FileMode(0644)); err != nil {
|
||||
if err := os.WriteFile(resultsLogFile, jStr, os.FileMode(0644)); err != nil {
|
||||
klog.Errorf("Error logging results to %s: %v", resultsLogFile, err)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user