Skip to content

Commit caae998

Browse files
committed
Fix test_traceparent_duplicated
1 parent 000368b commit caae998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/include/opentelemetry/ext/http/server/http_server.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ class HttpServer : private SocketTools::Reactor::SocketCallback
648648
{
649649
ptr++;
650650
}
651-
if (!conn.request.headers[name].empty() && equalsLowercased(name, "tracestate"))
651+
if (!conn.request.headers[name].empty())
652652
{
653653
conn.request.headers[name] = conn.request.headers[name].append(",").append(std::string(begin, ptr));
654654
} else

0 commit comments

Comments
 (0)