From 60a144230cad04889665ff4407983e6c5fdb2cde Mon Sep 17 00:00:00 2001 From: Bryce Soghigian Date: Wed, 10 Jan 2024 11:47:43 -0800 Subject: [PATCH] ci --- pkg/providers/instance/instance.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/providers/instance/instance.go b/pkg/providers/instance/instance.go index ca5bf238d..7aa7121c1 100644 --- a/pkg/providers/instance/instance.go +++ b/pkg/providers/instance/instance.go @@ -554,8 +554,8 @@ func (p *Provider) cleanupAzureResources(ctx context.Context, resourceName strin if vmErr != nil { logging.FromContext(ctx).Errorf("virtualMachine.Delete for %s failed: %v", resourceName, vmErr) } - // The order here is intentional, if the VM was created successfully, then we attempt to delete the vm, the - // nic, disk and all associated resources will be removed. If the VM was not created succesfully and a nic was found, + // The order here is intentional, if the VM was created successfully, then we attempt to delete the vm, the + // nic, disk and all associated resources will be removed. If the VM was not created succesfully and a nic was found, // then we attempt to delete the nic. nicErr := deleteNicIfExists(ctx, p.azClient.networkInterfacesClient, p.resourceGroup, resourceName) if nicErr != nil {