Skip to content

Commit

Permalink
Merge pull request #1 from jglick/JENKINS-26156-BodyInvoker.withDispl…
Browse files Browse the repository at this point in the history
…ayName

[JENKINS-26156] Do not call BodyInvoker.withDisplayName(null)
  • Loading branch information
jglick committed Apr 12, 2016
2 parents 5c291a9 + 0841b3e commit c919d02
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,6 @@ private final class PlaceholderExecutable implements ContinuableExecutable {
listener.getLogger().println("Running on " + computer.getDisplayName() + " in " + workspace); // TODO hyperlink
context.newBodyInvoker()
.withContexts(exec, computer, env, workspace)
.withDisplayName(null)
.withCallback(new Callback(cookie, lease))
.start();
LOGGER.log(FINE, "started {0}", cookie);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public boolean start() throws Exception {
body = getContext().newBodyInvoker()
.withContext(workspace)
.withCallback(new Callback(lease))
.withDisplayName(null)
.start();
return false;
}
Expand Down

0 comments on commit c919d02

Please sign in to comment.