Skip to content

Commit

Permalink
Fixing typo (#3992)
Browse files Browse the repository at this point in the history
  • Loading branch information
nexxai authored and mbfrahry committed Aug 1, 2019
1 parent 0248793 commit 2a290b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azurerm/resource_arm_app_service_plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ func resourceArmAppServicePlanRead(d *schema.ResourceData, meta interface{}) err
// A 404 doesn't error from the app service plan sdk so we'll add this check here to catch resource not found responses
// TODO This block can be removed if https://github.com/Azure/azure-sdk-for-go/issues/5407 gets addressed.
if utils.ResponseWasNotFound(resp.Response) {
log.Printf("[DEBUG] App Service Plan %q was not found in Resource Group %q - removnig from state!", name, resourceGroup)
log.Printf("[DEBUG] App Service Plan %q was not found in Resource Group %q - removing from state!", name, resourceGroup)
d.SetId("")
return nil
}
Expand Down

0 comments on commit 2a290b3

Please sign in to comment.