We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7488851 commit 80e84c7Copy full SHA for 80e84c7
1 file changed
otlp_psqlpy/__init__.py
@@ -76,7 +76,7 @@ def _construct_span(
76
if hosts:
77
span_attributes[SpanAttributes.SERVER_ADDRESS] = ", ".join(hosts)
78
span_attributes[SpanAttributes.SERVER_PORT] = ", ".join(
79
- [str(port) for port in ports]
+ [str(port) for port in ports],
80
)
81
span_attributes[SpanAttributes.NETWORK_TRANSPORT] = (
82
NetTransportValues.IP_TCP.value
@@ -85,7 +85,7 @@ def _construct_span(
85
elif host_addrs:
86
span_attributes[SpanAttributes.SERVER_ADDRESS] = ", ".join(host_addrs)
87
88
89
90
91
0 commit comments