-
Notifications
You must be signed in to change notification settings - Fork 186
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
feat(project): Retrieve metric-hub segments in Experimenter #11243
Conversation
9e53fa7
to
bea1278
Compare
Because *Experimenter needs to retrieve the segments from metric-hub as they are currently not available there This commit *allows Experimenter to retrieve segments from metric-hub Fixes #11242
bea1278
to
7da18b5
Compare
@@ -530,6 +530,14 @@ | |||
BASE_DIR / "outcomes" / "metric-hub-main" / "jetstream" / "outcomes" | |||
) | |||
|
|||
JETSTREAM_CONFIG_SEGMENTS_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.
So the JETSTREAM_CONFIG
part of the other name is actually a relic of pre-metric-hub config repo, which was called jetstream-config. Maybe it's time to update these settings to say METRIC_HUB_
instead of JETSTREAM_CONFIG_
? This would make all three of these related settings consistent, and update them for the new repo.
Something like:
METRIC_HUB_OUTCOMES_PATH
METRIC_HUB_SEGMENTS_PATH_DEFAULT
METRIC_HUB_SEGMENTS_PATH_JETSTREAM
4d7d496
to
aca427b
Compare
12f50d0
to
7da18b5
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.
This is great!! The comments I left are all pretty minor -- take a look and let me know if you have any questions or concerns with what I've suggested.
...imenter/experimenter/segments/tests/fixtures/valid_segments_definitions/firefox_desktop.toml
Outdated
Show resolved
Hide resolved
Because *Experimenter needs to retrieve the segments from metric-hub as they are currently not available there This commit *allows Experimenter to retrieve segments from metric-hub Fixes #11242
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 great work!! 🎉
Because
This commit
Fixes #11242