Skip to content

Commit

Permalink
[JENKINS-25975] Seem to have fixed a race condition whereby quick `sh…
Browse files Browse the repository at this point in the history
…` steps would sometimes not print all of their output.

Originally-Committed-As: 27e5b23046ae4e913edff0fa05256fdfafff0029
  • Loading branch information
jglick committed May 29, 2015
1 parent 358ffc3 commit 47ff795
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -364,7 +364,7 @@ private void startJnlpProc() throws Exception {
Thread.sleep(100);
}
story.j.assertBuildStatusSuccess(JenkinsRuleExt.waitForCompletion(b));
story.j.assertLogContains("finished waiting", b); // TODO sometimes missing
story.j.assertLogContains("finished waiting", b);
story.j.assertLogContains("OK, done", b);
killJnlpProc();
}
Expand Down

0 comments on commit 47ff795

Please sign in to comment.