diff --git a/helper/resource/error.go b/helper/resource/error.go index 8d5927454..7ee21614b 100644 --- a/helper/resource/error.go +++ b/helper/resource/error.go @@ -19,6 +19,10 @@ func (e *NotFoundError) Error() string { return e.Message } + if e.Retries > 0 { + return fmt.Sprintf("couldn't find resource (%d retries)", e.Retries) + } + return "couldn't find resource" }