-
Notifications
You must be signed in to change notification settings - Fork 282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Instrumentation.Http] fall back in case of NET9. update unit tests #2314
Open
TimothyMothra
wants to merge
37
commits into
open-telemetry:main
Choose a base branch
from
TimothyMothra:2029_httpinstrumentation_net9
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+76
−25
Open
Changes from 24 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
ec51d6f
change Instrumentation.Http to fall back in case of NET9. update unit…
TimothyMothra 3c11ae7
cleanup
TimothyMothra 1a07eca
Merge branch 'main' into 2029_httpinstrumentation_net9
TimothyMothra 8c01b21
fix line endings
TimothyMothra c25344f
Merge branch '2029_httpinstrumentation_net9' of https://github.com/Ti…
TimothyMothra 1f76f2b
dotnet format
TimothyMothra 339499b
fix access modifiers
TimothyMothra 5aa0e76
fix: add missing cases to switch expression
TimothyMothra 39330f6
fix: test class must be public
TimothyMothra 6fe41be
fix line endings
TimothyMothra dd3e7f5
testing downgrading the AnalysisLevel.
TimothyMothra d8d4748
fix: Use pattern matching
TimothyMothra 35a4082
fix: unused variable
TimothyMothra 37563a9
testing changes for Net9 GA
TimothyMothra c7a06ac
Revert "testing changes for Net9 GA"
TimothyMothra 228bf66
Revert "fix: unused variable"
TimothyMothra 2ce6d41
Revert "testing downgrading the AnalysisLevel."
TimothyMothra a5aeac9
merge main and resolve conflicts
TimothyMothra f706e80
testing update to CI
TimothyMothra 27477b6
fix test
TimothyMothra 60b2f5a
add TODO
TimothyMothra a35941e
cleanup csproj
TimothyMothra 7075153
cleanup extra whitespace
TimothyMothra 8b339ed
fix line endings
TimothyMothra 3022333
cleanup comments. link to tracking issue
TimothyMothra f9fa4f3
Merge branch 'main' into 2029_httpinstrumentation_net9
TimothyMothra ff8ff91
fix line endings
TimothyMothra 3b55505
Merge branch 'main' into 2029_httpinstrumentation_net9
TimothyMothra ce50ec8
remove net9 framework changes. change was made in different pr
TimothyMothra e6ff071
cleanup
TimothyMothra c5dc2c9
update changelog
TimothyMothra 8b3eaab
Merge branch 'main' into 2029_httpinstrumentation_net9
TimothyMothra 292c915
Merge branch 'main' into 2029_httpinstrumentation_net9
TimothyMothra f6f28f6
cleanup static var
TimothyMothra 8fc7f6b
Merge branch '2029_httpinstrumentation_net9' of https://github.com/Ti…
TimothyMothra 03ad8a9
Update src/OpenTelemetry.Instrumentation.Http/CHANGELOG.md
TimothyMothra 8150955
fix line endings
TimothyMothra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
.../OpenTelemetry.Instrumentation.Http.Tests/OpenTelemetry.Instrumentation.Http.Tests.csproj
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I need to add NET9 to the CI. I'm checking offline to confirm if this is the correct way to make that change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After #2313 gets merged,
net9.0
would run for all jobs by default. You won't need to configure for this individual job.