Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
7a14b14b
Commit
7a14b14b
authored
Apr 27, 2018
by
Shubheksha Jalan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace filepath with path due to pre-formatted volumeName
parent
6f82f407
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
attacher.go
pkg/volume/aws_ebs/attacher.go
+2
-2
No files found.
pkg/volume/aws_ebs/attacher.go
View file @
7a14b14b
...
@@ -19,7 +19,7 @@ package aws_ebs
...
@@ -19,7 +19,7 @@ package aws_ebs
import
(
import
(
"fmt"
"fmt"
"os"
"os"
"path
/filepath
"
"path"
"strconv"
"strconv"
"time"
"time"
...
@@ -249,7 +249,7 @@ func (plugin *awsElasticBlockStorePlugin) NewDetacher() (volume.Detacher, error)
...
@@ -249,7 +249,7 @@ func (plugin *awsElasticBlockStorePlugin) NewDetacher() (volume.Detacher, error)
}
}
func
(
detacher
*
awsElasticBlockStoreDetacher
)
Detach
(
volumeName
string
,
nodeName
types
.
NodeName
)
error
{
func
(
detacher
*
awsElasticBlockStoreDetacher
)
Detach
(
volumeName
string
,
nodeName
types
.
NodeName
)
error
{
volumeID
:=
aws
.
KubernetesVolumeID
(
file
path
.
Base
(
volumeName
))
volumeID
:=
aws
.
KubernetesVolumeID
(
path
.
Base
(
volumeName
))
if
_
,
err
:=
detacher
.
awsVolumes
.
DetachDisk
(
volumeID
,
nodeName
);
err
!=
nil
{
if
_
,
err
:=
detacher
.
awsVolumes
.
DetachDisk
(
volumeID
,
nodeName
);
err
!=
nil
{
glog
.
Errorf
(
"Error detaching volumeID %q: %v"
,
volumeID
,
err
)
glog
.
Errorf
(
"Error detaching volumeID %q: %v"
,
volumeID
,
err
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment