Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#21585] docdb: Add a tsan suppression for boost::regex_match
Summary: **Issue:** Starting from D29217, we changed from std::regex to boost::regex for faster Prometheus metric regex match. Recently, we observed TSAN race inside of boost::regex_match from many unit tests. This is because saved_state in boost::regex uses a global caches for mem block, and since time period between checking regex was low, TSAN detects race condition. **Fix:** Add a tsan suppression as it is a false positive. Jira: DB-10476 Test Plan: Jenkins Reviewers: sergei Reviewed By: sergei Subscribers: ybase, bogdan Differential Revision: https://phorge.dev.yugabyte.com/D33355
- Loading branch information