Skip to content

Commit d1e04e1

Browse files
committed
fix typo and unit test flaking on windows
1 parent f373caa commit d1e04e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)