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 the combo box for an URL type of additional repositories (#1879127) #2857
Fix the combo box for an URL type of additional repositories (#1879127) #2857
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.
Not sure what to say to this kind of diff. LGTM?
|
So, hum, I'm thinking the commits that changed stuff here were ff9a7e1 and cc2c3d3 ? That latter one seems to have changed one place in so on the face of it this seems like it's probably going in the right direction, but...it'd be nice to know that someone had checked that everything is now consistent and there isn't anything else still looking for the 'old' strings... |
|
@AdamWill if you want to do more digging yourself: Without any more info, I'd hazard a guess that somewhere we used to read So maybe try seeing where Myself, I'm content with the hypothesis, knowing Vendy wrote a lot of the implied changed code, and seeing the manual testing label dropped. I also think it's not worth chasing if she can just describe the thing for us... |
In the commit ff9a7e1, we introduced new constants for the URL source types with values 'BASEURL', 'MIRRORLIST' and 'METALINK'. In the commit cc2c3d3, we started to use these constants in the Installation Source spoke and removed the old ones with values 'url', 'mirrorlist' and 'metalink'. We updated the combo box for the base repository, but forgot to update the combo box for additional repositories. The combo box items have to have ids that match the values of the constants, otherwise the URL type of additional repositories will be always 'BASEURL'. Resolves: rhbz#1879127
9d7bc2b
to
2585d33
Compare
That is correct. I have updated the commit message to make it easier to understand the proposed changes.
I have searched for the old strings and the code seems to be fine now. |
This bug is not related to the |
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!
In the commit ff9a7e1, we introduced new constants for the URL source types with
values
BASEURL,MIRRORLISTandMETALINK. In the commit cc2c3d3, we startedto use these constants in the Installation Source spoke and removed the old ones
with values
url,mirrorlistandmetalink. We updated the combo box for thebase repository, but forgot to update the combo box for additional repositories.
The combo box items have to have ids that match the values of the constants,
otherwise the URL type of additional repositories will be always
BASEURL.Resolves: rhbz#1879127