fix: Fix the processing of asynchronous generator functions#313
Merged
fix: Fix the processing of asynchronous generator functions#313
Conversation
opentelemetry-processor-baggage dependency from < 0.55.0 to < 0.60.0 in the pyproject.toml file, while maintaining the same lower bound of >= 0.45.0b0. ### How to test? 1. Install the package with the updated dependency constraints 2. Verify that the package works correctly with newer versions of opentelemetry-processor-baggage (up to but not including 0.60.0) 3. Run the existing test suite to ensure compatibility ### Why make this change? This change allows the project to work with newer versions of the opentelemetry-processor-baggage library, providing compatibility with more recent releases while maintaining backward compatibility with existing supported versions.b16c5ad to
7f8a40e
Compare
1268bff to
0ab511f
Compare
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TLDR
Fixes handling of async generator functions in the tracing/wrapping functionality
Summary
This PR addresses an issue with how asynchronous generator functions are processed in the codebase. The fix ensures that async generators are properly wrapped and traced, which was likely causing issues with monitoring or instrumentation of these function types.
Key Changes
Impact
Testing Considerations