Bug showcase 1

This commit is contained in:
Ashlie Martinez 2024-02-14 08:14:29 -08:00
parent 3ea2e4734d
commit 6463afb348

View File

@ -61,9 +61,13 @@ func (h mailBackupHandler) NewContainerCache(
}
func (h mailBackupHandler) CanSkipItemFailure(
error,
string, string,
control.Options,
err error,
resourceID string, itemID string,
opts control.Options,
) (fault.SkipCause, bool) {
if err == nil {
return "", false
}
return fault.SkipKnownEventInstance503s, true
}