From 733768afefd74e1077533ae04e3a20bf1b15f665 Mon Sep 17 00:00:00 2001 From: Victor1319 Date: Thu, 5 Jun 2025 17:18:37 +0800 Subject: [PATCH] refactor(lcnode): skip extent not found error when migrate. #1000112446 Signed-off-by: Victor1319 --- lcnode/lc_scanner.go | 3 +++ 1 file changed, 3 insertions(+) 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 }