From 5c53a906bdac9eda1406fe50cca3f047beb53feb Mon Sep 17 00:00:00 2001 From: Jimeng Liu Date: Wed, 1 Mar 2017 14:21:50 -0800 Subject: [PATCH] remove unused StatusFailure constant --- pkg/volume/flexvolume/driver-call.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/volume/flexvolume/driver-call.go b/pkg/volume/flexvolume/driver-call.go index 4697351e05..f7ac12fb5d 100644 --- a/pkg/volume/flexvolume/driver-call.go +++ b/pkg/volume/flexvolume/driver-call.go @@ -56,8 +56,6 @@ const ( const ( // StatusSuccess represents the successful completion of command. StatusSuccess = "Success" - // StatusFailed represents that the command failed. - StatusFailure = "Failed" // StatusNotSupported represents that the command is not supported. StatusNotSupported = "Not supported" )