[CP] [bugfix] fix -4109 error during replaying GC log

This commit is contained in:
obdev
2024-02-09 17:58:54 +00:00
committed by ob-robot
parent 335cda36b4
commit be8b7b74d2

View File

@ -612,6 +612,12 @@ int ObGCHandler::replay(const void *buffer,
" than ls_max_decided_scn", K(tenant_readable_scn), K(ls_max_decided_scn), K(ls_id));
}
}
if (OB_SUCCESS != ret && OB_EAGAIN != ret) {
if (REACH_TIME_INTERVAL(1 * 1000 * 1000)) {
CLOG_LOG(WARN, "failed to check max_decided_scn ", K(ls_id), K(gc_log));
}
ret = OB_EAGAIN;
}
}
}