Skip to content

Commit 0e1be3a

Browse files
committed
Merge remote-tracking branch 'origin/retry' into retry
2 parents 953ad93 + 9f9c3b1 commit 0e1be3a

File tree

1 file changed

+2
-2
lines changed
  • exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/_log_exporter

1 file changed

+2
-2
lines changed

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/_log_exporter/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ def _export(self, serialized_data: bytes, timeout_sec: float):
138138
url=self._endpoint,
139139
data=data,
140140
verify=self._certificate_file,
141-
timeout=timeout_sec,
141+
timeout=timeout_sec
142142
cert=self._client_cert,
143143
)
144144
except ConnectionError:
145145
resp = self._session.post(
146146
url=self._endpoint,
147147
data=data,
148148
verify=self._certificate_file,
149-
timeout=timeout_sec,
149+
timeout=timeout_sec
150150
cert=self._client_cert,
151151
)
152152
return resp

0 commit comments

Comments
 (0)