Skip to content

Commit

Permalink
Fix typo: pustil -> psutil (#4311)
Browse files Browse the repository at this point in the history
* Fix typo: `pustil` -> `psutil`

* Update CHANGELOG.md

* Update test-requirements.txt

---------

Co-authored-by: Riccardo Magliocchetti <riccardo.magliocchetti@gmail.com>
  • Loading branch information
stevapple and xrmx authored Nov 26, 2024
1 parent 6812da2 commit 1ee2774
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#4270](https://github.com/open-telemetry/opentelemetry-python/pull/4270))
- api: fix logging of duplicate EventLogger setup warning
([#4299](https://github.com/open-telemetry/opentelemetry-python/pull/4299))
- sdk: fix setting of process owner in ProcessResourceDetector
([#4311](https://github.com/open-telemetry/opentelemetry-python/pull/4311))
- sdk: fix serialization of logs severity_number field to int
([#4324](https://github.com/open-telemetry/opentelemetry-python/pull/4324))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
try:
import psutil as psutil_module

pustil = psutil_module
psutil = psutil_module
except ImportError:
pass

Expand Down
1 change: 1 addition & 0 deletions opentelemetry-sdk/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ importlib-metadata==6.11.0
iniconfig==2.0.0
packaging==24.0
pluggy==1.5.0
psutil==5.9.6; sys_platform != 'win32'
py-cpuinfo==9.0.0
pytest==7.4.4
tomli==2.0.1
Expand Down

0 comments on commit 1ee2774

Please sign in to comment.