File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def _construct_span(
77
77
if hosts :
78
78
span_attributes [SpanAttributes .SERVER_ADDRESS ] = ", " .join (hosts )
79
79
span_attributes [SpanAttributes .SERVER_PORT ] = ", " .join (
80
- [str (port ) for port in ports ]
80
+ [str (port ) for port in ports ],
81
81
)
82
82
span_attributes [SpanAttributes .NETWORK_TRANSPORT ] = (
83
83
NetTransportValues .IP_TCP .value
@@ -86,7 +86,7 @@ def _construct_span(
86
86
elif host_addrs :
87
87
span_attributes [SpanAttributes .SERVER_ADDRESS ] = ", " .join (host_addrs )
88
88
span_attributes [SpanAttributes .SERVER_PORT ] = ", " .join (
89
- [str (port ) for port in ports ]
89
+ [str (port ) for port in ports ],
90
90
)
91
91
span_attributes [SpanAttributes .NETWORK_TRANSPORT ] = (
92
92
NetTransportValues .IP_TCP .value
You can’t perform that action at this time.
0 commit comments