RE: What steps should I take to diagnose why output does not appear in Jenkins's Console Output immediately?

2014-12-03 Thread Rob Mandeville
I’m guessing that, if you run your command from the command line, you get your output more quickly than you do when you run it in Jenkins. One possibility is that the program writing the log can tell whether it’s writing to a TTY or not, and changes its behavior accordingly. Often, this means

Re: What steps should I take to diagnose why output does not appear in Jenkins's Console Output immediately?

2014-12-03 Thread Daniel Beck
unbuffer, part of expect, may also help if this is the problem. What would be interesting is whether the log file for the build on Jenkins master gets written to immediately, or whether that's also delayed. On 03.12.2014, at 14:33, Rob Mandeville rmandevi...@dekaresearch.com wrote: I’m