-
Notifications
You must be signed in to change notification settings - Fork 263
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
adds --scale range option #1114
Conversation
The following is the coverage report on the affected files.
|
@mpetason Thanks a lot for all your work. Let's get that landed, I will give a review this week so that we finally be able to merge it. Thanks also for your patience. |
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
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
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: maximilien, mpetason The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test pull-knative-client-integration-tests |
It doesn't look like the failing test is associated with my changes. I'll try running it again on Monday. |
/test pull-knative-client-integration-tests |
/retest |
if err != nil { | ||
return err | ||
} | ||
} else { | ||
return fmt.Errorf("Scale must be of the format x..y or x") |
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.
return fmt.Errorf("Scale must be of the format x..y or x") | |
return fmt.Errorf("scale must be of the format x..y or x") |
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.
error messages should begin with lower case
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.
Should I make this edit and create a new PR, or commit suggestion? Not sure how it works after a merge.
Description
Fixes #822
Changes
Reference
Fixes #822
Replaces previous PR where I had issues with a rebase - #1070
Replaces previous PR where I had issues with a rebase - #986