We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe your environment Python 3.7
Steps to reproduce
from opentelemetry import trace from opentelemetry.sdk.trace import TracerProvider from opentelemetry.sdk.trace.export import BatchSpanProcessor, ConsoleSpanExporter trace.set_tracer_provider(TracerProvider()) tracer = trace.get_tracer(__name__) span_processor = BatchSpanProcessor(ConsoleSpanExporter()) trace.get_tracer_provider().add_span_processor(span_processor) with tracer.start_as_current_span("hello"): print("Hello, World!")
What is the actual behavior? Getting an error which is breaking our builds.
description should only be set when status_code is set to StatusCode.ERROR
What is the expected behavior? no such warning should occur and would expect to just see the traces.
Additional context Is it possible to hotfix this?
The text was updated successfully, but these errors were encountered:
Already resolved with; #1721
Sorry, something went wrong.
No branches or pull requests
Describe your environment
Python 3.7
Steps to reproduce
What is the actual behavior?
Getting an error which is breaking our builds.
What is the expected behavior?
no such warning should occur and would expect to just see the traces.
Additional context
Is it possible to hotfix this?
The text was updated successfully, but these errors were encountered: