You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Library version:
0.6.0 Expected behavior:
able to set custom path for target collector Actual behavior:
right now its not possible because of port append (443 or 80 or custom) which messes up actual path Steps to reproduce:
Library version:
0.6.0
Expected behavior:
able to set custom path for target collector
Actual behavior:
right now its not possible because of port append (443 or 80 or custom) which messes up actual path
Steps to reproduce:
just try to set
AsyncEmitter.createAndStart("collector.host.com/somepath", port = None, https = true)
and tracker will transform it to https://collector.host.com/somepath:443 instead of https://collector.host.com:443/somepath
I think easiest would be to update CollectorParams with extra field
path: Option[String]
which would be append to the uri.The text was updated successfully, but these errors were encountered: