-
Notifications
You must be signed in to change notification settings - Fork 0
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!: Combine exporter and endpoint #293
Conversation
A release (without a major update has been published)... https://github.com/kolonialno/troncos/releases/tag/v4.4.0 Adding release-please to prevent this happening again... |
Yeah I know. That's whats happens if we just merge stuff to main and let it live there without a release for a longer period. |
Yes was not a good move. Release please will fix this. |
@eirsyl Still waiting for a review on this PR ... |
ef7038b
to
a121a70
Compare
exporter_type = ExporterType.HTTP | ||
assert exporter_type, "You have to specify 'exporter_type'" | ||
|
||
self.endpoint = f"{scheme}://{host}:{port}{path}" |
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.
Make sure path starts with /
?
a121a70
to
8079205
Compare
Since this #282 introduces a breaking change to the api, I wanted to use the opportunity to merge endpoint and exporter into one param in
configure_tracer
.