From 043d3603ff2464e28fbc0cc91e126a329525005f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=80=80=E5=AE=97?= Date: Fri, 29 Mar 2019 10:49:22 +0800 Subject: [PATCH] remove unuse var --- pkg/cephfs/mountcache.go | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkg/cephfs/mountcache.go b/pkg/cephfs/mountcache.go index 64daf9a01..a7b73d85e 100644 --- a/pkg/cephfs/mountcache.go +++ b/pkg/cephfs/mountcache.go @@ -16,12 +16,11 @@ type volumeMountCacheEntry struct { DriverName string `json:"driverName"` DriverVersion string `json:"driverVersion"` - VolumeID string `json:"volumeID"` - Secrets map[string]string `json:"secrets"` - StagingPath string `json:"stagingPath"` - TargetPaths map[string]bool `json:"targetPaths"` - CreateTime time.Time `json:"createTime"` - LastMountTime time.Time `json:"lastMountTime"` + VolumeID string `json:"volumeID"` + Secrets map[string]string `json:"secrets"` + StagingPath string `json:"stagingPath"` + TargetPaths map[string]bool `json:"targetPaths"` + CreateTime time.Time `json:"createTime"` } type volumeMountCacheMap struct {