-
Notifications
You must be signed in to change notification settings - Fork 129
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
RUMM-1397 Update Endpoints #523
Conversation
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.
lgtm but i left a question regarding DDRUMEndpoint
public static func eu1() -> DDEndpoint { .init(sdkEndpoint: .eu1) } | ||
|
||
@objc | ||
public static func us1_fed() -> DDEndpoint { .init(sdkEndpoint: .us1_fed) } |
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.
we have DDLogsEndpoint
/ DDTracesEndpoint
but we don't have DDRUMEndpoint
, did we forget it or should we deprecate DDLogsEndpoint
/ DDTracesEndpoint
as well?
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.
Both set(logsEndpoint: DDLogsEndpoint)
and public func set(tracessEndpoint: DDLogsEndpoint)
were deprecated when introducing common func set(endpoint: DDEndpoint)
. Enum cases were not deprecated, but they could be.
dd73253
to
1041d07
Compare
1041d07
to
4ff0cd8
Compare
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.
LG 👍
What and why?
Update the endpoints available in the SDK and mark previous ones as deprecated.
Review checklist