Skip to content

Commit

Permalink
Merge pull request AliyunContainerService#1326 from shaloulcy/core_vo…
Browse files Browse the repository at this point in the history
…lume

feature: remote volume driver
  • Loading branch information
allencloud authored May 18, 2018
2 parents 8410064 + f67cf08 commit 4423313
Show file tree
Hide file tree
Showing 13 changed files with 1,013 additions and 306 deletions.
1 change: 1 addition & 0 deletions daemon/mgr/volume.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ func (vm *VolumeManager) Remove(ctx context.Context, name string) error {
if strings.Contains(err.Error(), "not found") {
return errors.Wrap(errtypes.ErrNotfound, err.Error())
}
return err
}

return nil
Expand Down
2 changes: 1 addition & 1 deletion plugins/plugins.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package plugins

var manager = &pluginManager{
plugins: make(map[string]*Plugin),
pluginSockPaths: []string{"/run/pouch/plugins"},
pluginSockPaths: []string{"/run/pouch/plugins", "/run/docker/plugins"},
pluginSpecPaths: []string{"/etc/pouch/plugins", "/var/lib/pouch/plugins"},
}

Expand Down
Loading

0 comments on commit 4423313

Please sign in to comment.