You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usage of std::regex_match was problematic for traceparent with trailing
spaces. The overload use is `std::regex_match(str, str + std::char_traits<CharT>::length(str), m, e, flags)`,
which resolves as the whole input instead of the trimmed input.
Changes:
- Fix std::regex_match usage.
- Add unit test.
0 commit comments