Skip to content

Commit

Permalink
Merge pull request #37 from open-telemetry/main
Browse files Browse the repository at this point in the history
[BUILD] Remove the hard-coded separator in tracestate (open-telemetry#2672)
  • Loading branch information
malkia authored May 23, 2024
2 parents ce7f4c8 + 78d488c commit b595d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/include/opentelemetry/trace/trace_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class TraceState
[&header_s, &first](nostd::string_view key, nostd::string_view value) noexcept {
if (!first)
{
header_s.append(",");
header_s.append(1, kMembersSeparator);
}
else
{
Expand Down

0 comments on commit b595d65

Please sign in to comment.