Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
-
1.0
Description
To reproduce:
- Create a pipeline with the contents below
- Run it once
- Open results screen and press re-run
- Note that it fails to show any in progress steps - they appear all at once
Expected:
- Should show up steps as they complete
node { echo 'first step' sh 'sleep 1; echo `date` first;' echo 'first step end' echo 'Second coming up' sh 'sleep 1; echo `date` second;' echo '9th' sh 'sleep 1; echo `date`;' echo '10th' sh 'sleep 1; echo `date`;' echo 'and we are finished' sh 'echo end; error 1' }
cc imeredith this is similar problem to one you fixed recently but without any stages - I wonder if this sounds familiar to you?