Skip to content
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

Minor/boring change: Consistently return user facing errors in SDN #13154

Merged
merged 1 commit into from
Mar 3, 2017

Conversation

pravisankar
Copy link

@pravisankar pravisankar commented Feb 28, 2017

Follow the existing convention: user facing errors should always start with lowercase.

@pravisankar
Copy link
Author

@openshift/networking ptal

@knobunc
Copy link
Contributor

knobunc commented Feb 28, 2017

Is the lower-case convention true for acronyms too?

@pravisankar
Copy link
Author

Hm, not sure. @smarterclayton ^^

@smarterclayton
Copy link
Contributor

It would not be true for acronyms in the beginning of error messages - they can stay as is.

@danwinship
Copy link
Contributor

From https://github.com/golang/go/wiki/CodeReviewComments#error-strings:

Error strings should not be capitalized (unless beginning with proper nouns or acronyms) or end with punctuation, since they are usually printed following other context. That is, use fmt.Errorf("something bad") not fmt.Errorf("Something bad"), so that log.Printf("Reading %s: %v", filename, err) formats without a spurious capital letter mid-message. This does not apply to logging, which is implicitly line-oriented and not combined inside other messages.

(So the glog/echo changes should also be reverted.)

@pravisankar
Copy link
Author

Updated, ptal

@pravisankar
Copy link
Author

[test]

@@ -120,32 +120,32 @@ func (master *OsdnMaster) validateNetworkConfig() error {
// Ensure cluster and service network don't overlap with host networks
for _, ipNet := range hostIPNets {
if ipNet.Contains(ni.ClusterNetwork.IP) {
errList = append(errList, fmt.Errorf("Error: Cluster IP: %s conflicts with host network: %s", ni.ClusterNetwork.IP.String(), ipNet.String()))
errList = append(errList, fmt.Errorf("error: Cluster IP: %s conflicts with host network: %s", ni.ClusterNetwork.IP.String(), ipNet.String()))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you drop the "error:" prefix here? (4 cases in this loop, plus another 2 later on in this file)

Other than that LGTM

Copy link
Contributor

@knobunc knobunc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@pravisankar
Copy link
Author

[merge]

1 similar comment
@knobunc
Copy link
Contributor

knobunc commented Mar 2, 2017

[merge]

@openshift-bot
Copy link
Contributor

Evaluated for origin test up to c102653

@openshift-bot
Copy link
Contributor

openshift-bot commented Mar 2, 2017

continuous-integration/openshift-jenkins/merge SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_future/762/) (Image: devenv-rhel7_6027)

@openshift-bot
Copy link
Contributor

Evaluated for origin merge up to c102653

@openshift-bot
Copy link
Contributor

continuous-integration/openshift-jenkins/test SUCCESS (https://ci.openshift.redhat.com/jenkins/job/test_pull_requests_origin_future/762/) (Base Commit: b6847b3)

@openshift-bot openshift-bot merged commit d5e43cf into openshift:master Mar 3, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants