Skip to content

Commit

Permalink
[JENKINS-27057] Correcting mistake in 6140881717bf937ecb42bf77ec11dcc…
Browse files Browse the repository at this point in the history
…208bedd0c.

Log text was being doubly copied.
Originally-Committed-As: 6de84edb0dd337b2179cb3f1bca1de396c10907d
  • Loading branch information
jglick committed Jan 12, 2016
1 parent e96134b commit ec01930
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -368,7 +368,7 @@ private void copyLogs() {
modified = true;
}
if (logText.isComplete()) {
logText.writeRawLogTo(entry.getValue(), logger); // defend against race condition?
logText.writeRawLogTo(revised, logger); // defend against race condition?
assert !node.isRunning() : "LargeText.complete yet " + node + " claims to still be running";
logsToCopy.remove(id);
modified = true;
Expand Down

0 comments on commit ec01930

Please sign in to comment.