-
Notifications
You must be signed in to change notification settings - Fork 363
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
Migrate Channel::make_channel to resolve multi channels #2986
Conversation
AntoinePrv
commented
Nov 16, 2023
- Add one to many get_channels
- Refactor ChannelContext params
- ChannelContext::make_channel migration 1
2e36559
to
f0e721c
Compare
platform_urls(bool with_credential = true) const; | ||
util::flat_set<std::string> urls(bool with_credential = true) const; | ||
[[nodiscard]] auto platform_urls(bool with_credential = true) const | ||
-> util::flat_set<std::pair<std::string, std::string>>; |
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.
The return type deserves a typename
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.
This part still needs improvement overall, such as not converting URL to strings.
However, I will first rework the tests, since it is heavily (and unnecessarily anymore) used there.
72ebf2f
to
3a6af4b
Compare