Skip to content

Commit 5b0855c

Browse files
committed
update gce func DeleteGroup
1 parent 011bb95 commit 5b0855c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

upup/pkg/fi/cloudup/gce/instancegroups.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ import (
3333

3434
// DeleteGroup deletes a cloud of instances controlled by an Instance Group Manager
3535
func (c *gceCloudImplementation) DeleteGroup(g *cloudinstances.CloudInstanceGroup) error {
36-
return deleteCloudInstanceGroup(c, g)
36+
return DeleteCloudInstanceGroup(c, g)
3737
}
3838

39-
// deleteCloudInstanceGroup deletes the InstanceGroupManager and current InstanceTemplate
40-
func deleteCloudInstanceGroup(c GCECloud, g *cloudinstances.CloudInstanceGroup) error {
39+
// DeleteCloudInstanceGroup deletes the InstanceGroupManager and current InstanceTemplate
40+
func DeleteCloudInstanceGroup(c GCECloud, g *cloudinstances.CloudInstanceGroup) error {
4141
mig := g.Raw.(*compute.InstanceGroupManager)
4242
err := DeleteInstanceGroupManager(c, mig)
4343
if err != nil {

0 commit comments

Comments
 (0)