Skip to content

Commit 234325f

Browse files
authored
Merge pull request #128 from alicelyu-px/volumeStateCheck
Add missed files from refactor
2 parents a056882 + 7afe9ed commit 234325f

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

mock/cloudops.mock.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oracle/oracle.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ func nodePoolContainsNode(s []containerengine.Node, e string) bool {
829829
return false
830830
}
831831

832-
func (o *oracleOps) IsVolumesReadyToExpand(volumeIDs []*string) (bool, error) {
832+
func (o *oracleOps) AreVolumesReadyToExpand(volumeIDs []*string) (bool, error) {
833833
return true, &cloudops.ErrNotSupported{
834834
Operation: "oracleOps:IsVolumesReadyToExpand",
835835
}

unsupported/unsupported.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func (u *unsupportedStorage) Attach(volumeID string, options map[string]string)
100100
}
101101
}
102102

103-
func (u *unsupportedStorage) IsVolumesReadyToExpand(volumeIDs []*string) (bool, error) {
103+
func (u *unsupportedStorage) AreVolumesReadyToExpand(volumeIDs []*string) (bool, error) {
104104
return true, &cloudops.ErrNotSupported{
105105
Operation: "unsupportedStorage:IsVolumesReadyToExpand",
106106
}

vsphere/vsphere.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ func (ops *vsphereOps) Enumerate(volumeIds []*string,
533533
}
534534
}
535535

536-
func (ops *vsphereOps) IsVolumesReadyToExpand(volumeIDs []*string) (bool, error) {
536+
func (ops *vsphereOps) AreVolumesReadyToExpand(volumeIDs []*string) (bool, error) {
537537
return true, &cloudops.ErrNotSupported{
538538
Operation: "vsphereOps:IsVolumesReadyToExpand",
539539
}

0 commit comments

Comments
 (0)