Skip to content

Commit

Permalink
fix(kubernetes): Fix spaces in error message on artifact bind failure (
Browse files Browse the repository at this point in the history
…#4357)

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
avram and mergify[bot] committed Feb 27, 2020
1 parent 55c4035 commit a98ed44
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ public OperationResult operate(List _unused) {
if (!unboundArtifacts.isEmpty()) {
throw new IllegalArgumentException(
String.format(
"The following required artifacts could not be bound: '%s'."
+ "Check that the Docker image name above matches the name used in the image field of your manifest."
"The following required artifacts could not be bound: '%s'. "
+ "Check that the Docker image name above matches the name used in the image field of your manifest. "
+ "Failing the stage as this is likely a configuration error.",
unboundArtifacts));
}
Expand Down

0 comments on commit a98ed44

Please sign in to comment.