-
Notifications
You must be signed in to change notification settings - Fork 839
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
Fix Span#setStatus #6797
Labels
Bug
Something isn't working
Comments
@jack-berg Is this still up for grabs? Can you please assign so i can work on it? |
Victorsesan
added a commit
to Victorsesan/opentelemetry-java
that referenced
this issue
Oct 21, 2024
…code priorities and description handling Relate to open-telemetry#6797
@jkwatson Submitted a PR for review, thanks |
Victorsesan
added a commit
to Victorsesan/opentelemetry-java
that referenced
this issue
Oct 23, 2024
Relate to open-telemetry#6797
Victorsesan
added a commit
to Victorsesan/opentelemetry-java
that referenced
this issue
Oct 24, 2024
*Gradle build in build.gradle.kts had failed during spotless check because the plugin org.graalvm.buildtools.native was not found -Solution: I have applied a plugin and made it work *spotlessJavaCheck task failed because certain files did not conform to the formatting rules defined in the Spotless configuration -Solution: Initiated an auto fix using ./gradlew :sdk:trace:spotlessApply *Lastly as requested i initiated ./gradlew spotlessApply to ensure a consist code formating and the build was successful with no errors! Relate to open-telemetry#6797
Victorsesan
added a commit
to Victorsesan/opentelemetry-java
that referenced
this issue
Nov 3, 2024
…ngChangedAfterEnd test Ref Fix Span#setStatus open-telemetry#6797
Victorsesan
added a commit
to Victorsesan/opentelemetry-java
that referenced
this issue
Nov 8, 2024
…ectly under the specified conditions, maintaining the integrity of the span's status. Ref Fix Span#setStatus open-telemetry#6797
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As reported by @laurit,
Span#setStatus
implementation doesn't conform to the spec.Notably:
OK > ERROR > UNSET
, where a call to set a lower priority shouldn't be able to override a higher priority status. Currently, its possible for a call withUNSET
and overrideERROR
.ERROR
, but is notThe text was updated successfully, but these errors were encountered: