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

fix formatString describe helper #21304

Conversation

juanvallejo
Copy link
Contributor

@@ -75,7 +75,7 @@ func formatString(out *tabwriter.Writer, label string, v interface{}) {

fmt.Fprintf(out, fmt.Sprintf("%s:", label))
for _, lval := range labelVals {
fmt.Fprintf(out, fmt.Sprintf("\t%s\n", lval))
fmt.Fprintln(out, fmt.Sprintf("\t%s", lval))
Copy link
Member

Choose a reason for hiding this comment

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

What was wrong with the previous one? The current won't work, b/c fmt.Fprintln does not accept format parameter, see https://golang.org/pkg/fmt/#Fprintln.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The current won't work, b/c fmt.Fprintln does not accept format parameter

@soltysh I'd say that's precisely why Fprintln fixes the issue :) The problem was that label values containing % were being incorrectly interpreted as fmt strings. From the bugzilla:

Log Tail:	Pulled 2/2 layers, 100%!c(MISSING)omplete
		Extracting

		Pulling image golang:1.10.3 ...
		error: build error: no such image

Copy link
Member

Choose a reason for hiding this comment

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

My bad, I was parsing this line wrongly.

Copy link
Member

@soltysh soltysh left a comment

Choose a reason for hiding this comment

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

/lgtm
/approve

@openshift-ci-robot openshift-ci-robot added the lgtm Indicates that a PR is ready to be merged. label Oct 24, 2018
@openshift-ci-robot
Copy link

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: juanvallejo, soltysh

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci-robot openshift-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 24, 2018
@juanvallejo
Copy link
Contributor Author

/retest

@openshift-merge-robot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@smarterclayton
Copy link
Contributor

/refresh

@openshift-merge-robot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

2 similar comments
@openshift-merge-robot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@openshift-merge-robot
Copy link
Contributor

/retest

Please review the full test history for this PR and help us cut down flakes.

@openshift-merge-robot openshift-merge-robot merged commit 4b1e68d into openshift:master Oct 27, 2018
@juanvallejo juanvallejo deleted the jvallejo/fix-format-string-helper branch October 29, 2018 02:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. lgtm Indicates that a PR is ready to be merged.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants