refactor(lcnode): skip extent not found error when migrate. #1000112446

Signed-off-by: Victor1319 <zengxuewei@oppo.com>
This commit is contained in:
Victor1319 2025-06-05 17:18:37 +08:00 committed by zhumingze1108
parent 5b2d09c4d3
commit 733768afef

View File

@ -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
}