Skip to content

Commit 49d3f68

Browse files
committed
** Update: Fix typos in bucket and bucket object.
1 parent 0d71e62 commit 49d3f68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/destroy/gcp/bucket.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (o *ClusterUninstaller) listBucketsWithFilter(ctx context.Context, fields s
5252
}
5353

5454
func (o *ClusterUninstaller) deleteBucket(ctx context.Context, item cloudResource) error {
55-
o.Logger.Debugf("Deleting storate bucket %s", item.name)
55+
o.Logger.Debugf("Deleting storage bucket %s", item.name)
5656
ctx, cancel := context.WithTimeout(ctx, defaultTimeout)
5757
defer cancel()
5858
err := o.storageSvc.Buckets.Delete(item.name).Context(ctx).Do()

pkg/destroy/gcp/bucketobject.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (o *ClusterUninstaller) listBucketObjects(ctx context.Context, bucket cloud
3131
}
3232

3333
func (o *ClusterUninstaller) deleteBucketObject(ctx context.Context, bucket cloudResource, item cloudResource) error {
34-
o.Logger.Debugf("Deleting storate object %s/%s", bucket.name, item.name)
34+
o.Logger.Debugf("Deleting storage object %s/%s", bucket.name, item.name)
3535
ctx, cancel := context.WithTimeout(ctx, defaultTimeout)
3636
defer cancel()
3737
err := o.storageSvc.Objects.Delete(bucket.name, item.name).Context(ctx).Do()

0 commit comments

Comments
 (0)