23 lines
563 B
Go
23 lines
563 B
Go
package openstack
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
"github.com/rackspace/gophercloud"
|
|
)
|
|
|
|
// CheckDeleted checks the error to see if it's a 404 (Not Found) and, if so,
|
|
// sets the resource ID to the empty string instead of throwing an error.
|
|
func CheckDeleted(d *schema.ResourceData, err error, msg string) error {
|
|
errCode, ok := err.(*gophercloud.UnexpectedResponseCodeError)
|
|
if !ok {
|
|
return fmt.Errorf("%s: %s", msg, err)
|
|
}
|
|
if errCode.Actual == 404 {
|
|
d.SetId("")
|
|
return nil
|
|
}
|
|
return fmt.Errorf("%s: %s", msg, err)
|
|
}
|