ddl not record warning of entry not exist in dag warning history

This commit is contained in:
simonjoylet
2023-04-06 15:11:00 +00:00
committed by ob-robot
parent 667cbe6e84
commit b969710b6f
7 changed files with 31 additions and 2 deletions

View File

@ -2099,6 +2099,9 @@ int ObDDLScheduler::on_column_checksum_calc_reply(
}))) {
LOG_WARN("failed to modify task", K(ret));
}
if (OB_ENTRY_NOT_EXIST == ret) {
ret = OB_NEED_RETRY;
}
LOG_INFO("receive column checksum response", K(ret), K(tablet_id), K(task_key), K(ret_code));
return ret;
}
@ -2167,6 +2170,9 @@ int ObDDLScheduler::on_sstable_complement_job_reply(
}))) {
LOG_WARN("failed to modify task", K(ret));
}
if (OB_ENTRY_NOT_EXIST == ret) {
ret = OB_NEED_RETRY;
}
return ret;
}