Skip to content

Commit a3346ae

Browse files
authored
fix instrumenting_module_version typo (#2830)
1 parent b7a37ab commit a3346ae

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
- Fix get_log_emitter instrumenting_module_version args typo
11+
([#2830](https://github.com/open-telemetry/opentelemetry-python/pull/2830))
1012
- Fix OTLP gRPC exporter warning message
1113
([#2781](https://github.com/open-telemetry/opentelemetry-python/pull/2781))
1214
- Fix tracing decorator with late configuration

opentelemetry-sdk/src/opentelemetry/sdk/_logs/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,13 +427,13 @@ def resource(self):
427427
def get_log_emitter(
428428
self,
429429
instrumenting_module_name: str,
430-
instrumenting_module_verison: str = "",
430+
instrumenting_module_version: str = "",
431431
) -> LogEmitter:
432432
return LogEmitter(
433433
self._resource,
434434
self._multi_log_processor,
435435
InstrumentationScope(
436-
instrumenting_module_name, instrumenting_module_verison
436+
instrumenting_module_name, instrumenting_module_version
437437
),
438438
)
439439

0 commit comments

Comments
 (0)