Merge pull request #68435 from humblec/log-file-nil

Glusterfs: Remove unwanted `log-file` mount argument.
This commit is contained in:
k8s-ci-robot 2018-09-25 12:15:42 -07:00 committed by GitHub
commit 433d72da06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -319,10 +319,11 @@ func (b *glusterfsMounter) setUpAtInternal(dir string) error {
// its own log based on PV + Pod
log = path.Join(p, b.pod.Name+"-glusterfs.log")
// Use derived log file in gluster fuse mount
options = append(options, "log-file="+log)
}
// Use derived/provided log file in gluster fuse mount
options = append(options, "log-file="+log)
options = append(options, "log-level=ERROR")
var addrlist []string