Skip to content

Commit

Permalink
Clarify cleanup fallback warning message (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
abyrne55 authored Oct 1, 2024
1 parent 88e50b4 commit 35e0ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/verifier/aws/entry_point.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ func (a *AwsVerifier) ValidateEgress(vei verifier.ValidateEgressInput) *output.O
})
if err != nil {
a.Logger.Info(vei.Ctx, "Unable to detach instance from security group. Falling back to slower cloud resource cleanup method.")
a.writeDebugLogs(vei.Ctx, fmt.Sprintf("Error encountered while trying to detach instance: %s.", err))
a.writeDebugLogs(vei.Ctx, fmt.Sprintf("Fell back to slower cloud resource cleanup because faster method (network interface detatchment) blocked by AWS: %s.", err))
}
}

Expand Down

0 comments on commit 35e0ea3

Please sign in to comment.