fix hang in do_with_crash_restore

This commit is contained in:
nroskill
2023-06-14 02:17:48 +00:00
committed by ob-robot
parent 58193a69d4
commit 63d659c58c
4 changed files with 42 additions and 37 deletions

View File

@ -281,6 +281,7 @@ int faststack()
_exit(EXIT_FAILURE);
}
}
LOG_WARN("faststack", K(now), K(ret));
return ret;
}

View File

@ -397,7 +397,9 @@ void ObTrace::end()
#ifndef NDEBUG
check_leak_span();
#endif
reset();
if (trace_id_.is_inited()) {
reset();
}
}
ObSpanCtx* ObTrace::begin_span(uint32_t span_type, uint8_t level, bool is_follow)