We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1107b commit f4ea884Copy full SHA for f4ea884
pkg/hostpath/hostpath.go
@@ -151,10 +151,10 @@ func discoverExistingSnapshots() {
151
for _, file := range files {
152
isSnapshot, snapshotID := getSnapshotID(file.Name())
153
if isSnapshot {
154
- glog.V(4).Infof("adding snapshot %s from file %s", snapshotID, file.Name())
+ glog.V(4).Infof("adding snapshot %s from file %s", snapshotID, getSnapshotPath(snapshotID))
155
hostPathVolumeSnapshots[snapshotID] = hostPathSnapshot{
156
Id: snapshotID,
157
- Path: file.Name(),
+ Path: getSnapshotPath(snapshotID),
158
ReadyToUse: true,
159
}
160
0 commit comments