Skip to content

Commit

Permalink
Linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gdavison committed Feb 8, 2024
1 parent 950bd4f commit 149fc56
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/service/s3/bucket.go
Expand Up @@ -774,7 +774,9 @@ func resourceBucketCreate(ctx context.Context, d *schema.ResourceData, meta inte
return sdkdiag.AppendErrorf(diags, "waiting for S3 Bucket (%s) create: %s", d.Id(), err)
}

bucketCreateTags(ctx, conn, d.Id(), getTagsIn(ctx))
if err := bucketCreateTags(ctx, conn, d.Id(), getTagsIn(ctx)); err != nil {
return sdkdiag.AppendErrorf(diags, "setting S3 Bucket (%s) tags: %s", d.Id(), err)
}

return append(diags, resourceBucketUpdate(ctx, d, meta)...)
}
Expand Down

0 comments on commit 149fc56

Please sign in to comment.