fix: Resolve core issues at runtime#3051
fix: Resolve core issues at runtime#3051Mixficsol wants to merge 2 commits intoOpenAtomFoundation:3.5from
Conversation
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
在 GetHistogram () 方法中的 histogram_family_->Add 这里会出现 core dump,因为 histogram_family_ 会每分钟重置一次,由于在重置的时候没有对 histogram_family_ 有上锁的操作,这里会产生在调用 Add 的情况下 histogram_family_ 是空指针导致进程崩溃
在修复后,新增加了在重置
histogram_family_上了一个互斥锁进行保护