-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Major
-
Component/s: blueocean-plugin
-
1.0
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'
}