Skip to content

Commit 48e0456

Browse files
committed
Add changelog, adjust err msg
1 parent 7c2be23 commit 48e0456

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

util/opentelemetry-util-genai/CHANGELOG.md

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

88
## Unreleased
99

10+
- Log error when `fsspec` fails to be imported instead of silently failing ([#4037](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/4037)).
1011
- Minor change to check LRU cache in Completion Hook before acquiring semaphore/thread ([#3907](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3907)).
1112
- Add environment variable for genai upload hook queue size
1213
([https://github.com/open-telemetry/opentelemetry-python-contrib/pull/3943](#3943))

util/opentelemetry-util-genai/src/opentelemetry/util/genai/_upload/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def upload_completion_hook() -> CompletionHook:
5050
)
5151
except ImportError:
5252
_logger.exception(
53-
"Failed to import `fsspec`. Falling back to `NoOpCompletionHook` which does nothing."
53+
"Failed to import `fsspec`. Falling back to `NoOpCompletionHook`."
5454
)
5555
return _NoOpCompletionHook()
5656

0 commit comments

Comments
 (0)