Skip to content

Commit

Permalink
Merge pull request #186 from barney-s/fmt
Browse files Browse the repository at this point in the history
go fmt fix
  • Loading branch information
k8s-ci-robot committed Mar 12, 2020
2 parents c9672ae + cb8edc9 commit b321e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/application_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (r *ApplicationReconciler) getNewApplicationStatus(ctx context.Context, app
} else if aggReady {
setReadyCondition(newApplicationStatus, "ComponentsReady", "all components ready")
} else {
setNotReadyCondition(newApplicationStatus, "ComponentsNotReady", fmt.Sprintf("%d components not ready", len(objectStatuses) - countReady))
setNotReadyCondition(newApplicationStatus, "ComponentsNotReady", fmt.Sprintf("%d components not ready", len(objectStatuses)-countReady))
}

if errs != nil {
Expand Down

0 comments on commit b321e75

Please sign in to comment.