File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
exporter/opentelemetry-exporter-otlp-proto-grpc/tests Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111 clear ([ #4562 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4562/ )
1212 and [ #4535 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4535 ) ).
1313- Update OTLP gRPC/HTTP exporters: the export timeout is now inclusive of all retries and backoffs,
14- and an unnecessary 32 second sleep that occured after all retries had completed/failed was removed
14+ and an unnecessary 32 second sleep that occurred after all retries had completed/failed was removed
1515 ([ #4564 ] ( https://github.com/open-telemetry/opentelemetry-python/pull/4564 ) ).
1616
1717
Original file line number Diff line number Diff line change @@ -386,9 +386,9 @@ def test_retry_timeout(self):
386386 log .message ,
387387 )
388388 with self .assertLogs (level = WARNING ) as warning :
389- exporter = OTLPSpanExporterForTesting (insecure = True , timeout = 3. 5 )
389+ exporter = OTLPSpanExporterForTesting (insecure = True , timeout = 5 )
390390 # pylint: disable=protected-access
391- self .assertEqual (exporter ._timeout , 3. 5 )
391+ self .assertEqual (exporter ._timeout , 5 )
392392 self .assertEqual (
393393 exporter .export ([self .span ]),
394394 SpanExportResult .FAILURE ,
You can’t perform that action at this time.
0 commit comments