diff --git a/lcnode/lc_scanner.go b/lcnode/lc_scanner.go index 084bd4741..d5ed25de5 100644 --- a/lcnode/lc_scanner.go +++ b/lcnode/lc_scanner.go @@ -526,6 +526,9 @@ func isSkipErr(err error) bool { if strings.Contains(err.Error(), "no such file or directory") { return true } + if strings.Contains(err.Error(), "ExtentNotFoundError") { + return true + } return false }