-
Notifications
You must be signed in to change notification settings - Fork 367
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 antctl mc deploy command usage #6287
Conversation
This patch ensures that v is optional in version tag and improved error message if specified version tag is not found. Signed-off-by: Roopesh Saravanan <roopeshsaravanan.dev@gmail.com>
Thanks, @luolanzone and @tnqn for the review! After the review changes the new test cases for this patch are failing because the check is present in the
inside |
Yes, actually it's better to move the check there to deal with "version" in a single place. But I don't think it's caused by the review changes, the test failed before the review changes are applied. |
Signed-off-by: Roopesh Saravanan <roopeshsaravanan.dev@gmail.com>
Hi @roopeshsn Could you check the failure of golanglint result here |
Signed-off-by: Roopesh Saravanan <roopeshsaravanan.dev@gmail.com>
Updated the PR with formatting. |
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
/skip-all |
This patch ensures that
v
is optional in the version tag and improves the error message if the specified version tag is not found.If someone provide an invalid tag the error message would be,
This PR addresses the issue #6151