modify log level from error to warning when schedule a config update task failed

This commit is contained in:
obdev 2022-10-27 08:35:10 +00:00 committed by wangzelin.wzl
parent b45018b9f2
commit d49a934524

View File

@ -416,7 +416,7 @@ int ObConfigManager::got_version(int64_t version, const bool remove_repeat/* = f
update_task_.version_ = version;
update_task_.scheduled_time_ = ObTimeUtility::current_monotonic_raw_time();
if (OB_FAIL(TG_SCHEDULE(lib::TGDefIDs::CONFIG_MGR, update_task_, 0, false))) {
LOG_ERROR("Update local config failed", K(ret));
LOG_WARN("Update local config failed, may try later", K(ret));
} else {
LOG_INFO("Schedule update config task successfully!");
}