From 10bdf7f120bfc634d936713efaf6a8c93107a9a1 Mon Sep 17 00:00:00 2001 From: mbohlool Date: Wed, 21 Jun 2017 00:13:36 -0700 Subject: [PATCH] Remove all references to types.UnixUserID and types.UnixGroupID --- pkg/volume/cinder/cinder.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/volume/cinder/cinder.go b/pkg/volume/cinder/cinder.go index 92a3e5710f8c7..be6fea4e5daac 100644 --- a/pkg/volume/cinder/cinder.go +++ b/pkg/volume/cinder/cinder.go @@ -298,12 +298,12 @@ func (b *cinderVolumeMounter) CanMount() error { return nil } -func (b *cinderVolumeMounter) SetUp(fsGroup *types.UnixGroupID) error { +func (b *cinderVolumeMounter) SetUp(fsGroup *int64) error { return b.SetUpAt(b.GetPath(), fsGroup) } // SetUp bind mounts to the volume path. -func (b *cinderVolumeMounter) SetUpAt(dir string, fsGroup *types.UnixGroupID) error { +func (b *cinderVolumeMounter) SetUpAt(dir string, fsGroup *int64) error { glog.V(5).Infof("Cinder SetUp %s to %s", b.pdName, dir) b.plugin.volumeLocks.LockKey(b.pdName)