aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorn9 <n9>2023-08-10 10:58:48 +0200
committerChris Lu <chrislusf@users.noreply.github.com>2023-08-10 06:51:06 -0700
commit98431fe0834970f912d5d03523cb36e14fca9de0 (patch)
tree74978d56274b143c9f23ac466db30d389a230511
parent2577a4458afba4ebccf09ebaf066e50b93193689 (diff)
downloadseaweedfs-csi-driver-98431fe0834970f912d5d03523cb36e14fca9de0.tar.xz
seaweedfs-csi-driver-98431fe0834970f912d5d03523cb36e14fca9de0.zip
Added missing arg
-rw-r--r--pkg/driver/volume.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/driver/volume.go b/pkg/driver/volume.go
index e4e2cf3..a6d7ddb 100644
--- a/pkg/driver/volume.go
+++ b/pkg/driver/volume.go
@@ -119,7 +119,7 @@ func (vol *Volume) Unstage(stagingTargetPath string) error {
}
if err := vol.unmounter.Unmount(); err != nil {
- glog.Errorf("error unmounting volume during unstage: %s, err: %v", err)
+ glog.Errorf("error unmounting volume during unstage: %s, err: %v", stagingTargetPath, err)
return err
}