[FEAT MERGE] Merge syslog user experience improvement to master

Co-authored-by: Charles0429 <xiezhenjiang@gmail.com>
Co-authored-by: tino247 <tino247@126.com>
Co-authored-by: chaser-ch <chaser.ch@antgroup.com>
This commit is contained in:
stdliu
2023-02-06 15:52:23 +08:00
committed by ob-robot
parent 1de9266dd0
commit f8c5c2647f
796 changed files with 4465 additions and 3036 deletions

View File

@ -149,7 +149,7 @@ void ObSchemaConstructTask::wait(const int64_t version)
clock_gettime(CLOCK_REALTIME, &ts);
ts.tv_sec += 1;
if (dbg_construct_task) {
LOG_WARN("task: waiting", K(version), K(count()));
LOG_WARN_RET(OB_SUCCESS, "task: waiting", K(version), K(count()));
}
int rc = 0;
do {
@ -161,7 +161,7 @@ void ObSchemaConstructTask::wait(const int64_t version)
void ObSchemaConstructTask::wakeup(const int64_t version)
{
if (dbg_construct_task) {
LOG_WARN("task: wakingup", K(version), K(count()));
LOG_WARN_RET(OB_SUCCESS, "task: wakingup", K(version), K(count()));
}
(void)pthread_cond_broadcast(&schema_cond_);
}