-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Refactor RepoSpec
parseHostSpec
#4932
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: annasong20 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@@ -191,24 +195,37 @@ func TestNewRepoSpecFromUrl_Smoke(t *testing.T) { | |||
}, | |||
{ | |||
name: "t6", | |||
input: "git@gitlab2.sqtools.ru:10022/infra/kubernetes/thanos-base.git?ref=v0.1.0", |
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 test was invalid. git fetch
would've treated 10022
as a folder name, not a port.
Fix ssh parsing in issue 4847
56a62e9
to
0e0268d
Compare
/cc @KnVerey |
@annasong20: PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
This PR fixes #4847. This PR also attempts to increase the readability of
parseHostSpec
to increase maintainability and reduce the likelihood of such bugs occurring in the future.