Skip to content

Commit

Permalink
fix instrumenting_module_version typo (#2830)
Browse files Browse the repository at this point in the history
  • Loading branch information
povilasv authored Jul 18, 2022
1 parent b7a37ab commit a3346ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Fix get_log_emitter instrumenting_module_version args typo
([#2830](https://github.com/open-telemetry/opentelemetry-python/pull/2830))
- Fix OTLP gRPC exporter warning message
([#2781](https://github.com/open-telemetry/opentelemetry-python/pull/2781))
- Fix tracing decorator with late configuration
Expand Down
4 changes: 2 additions & 2 deletions opentelemetry-sdk/src/opentelemetry/sdk/_logs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,13 +427,13 @@ def resource(self):
def get_log_emitter(
self,
instrumenting_module_name: str,
instrumenting_module_verison: str = "",
instrumenting_module_version: str = "",
) -> LogEmitter:
return LogEmitter(
self._resource,
self._multi_log_processor,
InstrumentationScope(
instrumenting_module_name, instrumenting_module_verison
instrumenting_module_name, instrumenting_module_version
),
)

Expand Down

0 comments on commit a3346ae

Please sign in to comment.