We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a5d43f commit adcf7ffCopy full SHA for adcf7ff
src/common/assert.cc
@@ -43,6 +43,12 @@ namespace ceph {
43
{
44
ceph_assert(!g_assert_context);
45
g_assert_context = cct;
46
+ const auto supressions = get_str_list(
47
+ g_assert_context->_conf.get_val<std::string>("ceph_assert_supresssions"));
48
+ if (!supressions.empty()) {
49
+ lderr(g_assert_context) << "WARNING: supressions for ceph_assert present: "
50
+ << supressions << dendl;
51
+ }
52
}
53
54
[[gnu::cold]] void __ceph_assert_fail(const char *assertion,
0 commit comments