ddl not record warning of entry not exist in dag warning history
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user