mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-22 03:11:40 +00:00
Avoid explicit mention of glusterfs in error strings.
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
parent
d4978c9966
commit
e8f59b0797
@ -34,17 +34,17 @@ func readGlusterLog(path string, podName string) error {
|
|||||||
var line2 string
|
var line2 string
|
||||||
linecount := 0
|
linecount := 0
|
||||||
|
|
||||||
glog.Infof("glusterfs: failure, now attempting to read the gluster log for pod %s", podName)
|
glog.Infof("failure, now attempting to read the gluster log for pod %s", podName)
|
||||||
|
|
||||||
// Check and make sure path exists
|
// Check and make sure path exists
|
||||||
if len(path) == 0 {
|
if len(path) == 0 {
|
||||||
return fmt.Errorf("glusterfs: log file does not exist for pod: %s", podName)
|
return fmt.Errorf("log file does not exist for pod %s", podName)
|
||||||
}
|
}
|
||||||
|
|
||||||
// open the log file
|
// open the log file
|
||||||
file, err := os.Open(path)
|
file, err := os.Open(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("glusterfs: could not open log file for pod: %s", podName)
|
return fmt.Errorf("could not open log file for pod %s", podName)
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user