Commit Graph

12 Commits

Author SHA1 Message Date
David Greenspan
4966e8c842 Fix “Uploading” progress bar on meteor deploy
For some reason, super-jobs of the actual upload job have a `.current` progress but no `.end` value, and then they are chosen for progress display instead of the actual upload.  With this change, we don’t eagerly choose a job for display if it has a `.current` unless it also has a `.end`.

It’s probably also worth examining what is going on with the various values of `.current` of the super-jobs.
2014-10-23 16:12:54 -07:00
David Greenspan
d064d744a3 Display progress when restarting the server
Previously, all progress display was turned off after the app’s initial start, so no progress would be displayed on restart due to server code change.

Now, we enable/disable progress display from inside the loop that re-runs the app on change.

Remove the “suppressDisplay” approach to hiding the spinner when there’s an error building the app, because it didn’t work on rebuilds, only the first build.  Better to just call enableProgressDisplay(false) and hope for the best like we do elsewhere.

Conflicts:
	tools/progress.js
2014-10-22 13:37:08 -07:00
David Greenspan
0706e3fe6d Display progress message in case of multiple jobs
Previously, if there were two parallel jobs like “Starting your app” and “Bundling app,” we’d display just a spinner and no message.  Now, we choose a message and display it.
2014-10-22 13:36:29 -07:00
Emily Stark
11471a82c8 Supress progress spinner while waiting for file changes.
This prevents "Starting your app..." from showing immediately after
"Your app is crashing. Waiting for file changes."
2014-10-22 10:31:17 -07:00
Justin SB
c325023f15 Tweak when tasks are marked as done & current, also nudge the spinner when no progress 2014-10-17 11:27:17 -07:00
Justin SB
61cc351b95 Cleanups from self-code review 2014-10-17 11:27:17 -07:00
Justin SB
63ad52fb6b Add comment for commented out null-title check 2014-10-17 11:27:15 -07:00
Justin SB
bbd7e0c8cb Remove dead code in progress 2014-10-17 11:27:15 -07:00
Justin SB
d1fdb06103 Add yield to Console.nudge(), remove old exponential nudge which didn't look right 2014-10-17 11:27:13 -07:00
Justin SB
5562865287 Rename Console.statusPollMaybe -> Console.nudge
We're working towards replacing patience
2014-10-17 11:27:13 -07:00
Justin SB
db10e231a4 Support asymptotic progress bar for constraint solver
Until we either can estimate progress or have a spinner...
2014-09-24 15:53:04 -07:00
Justin SB
30f4fa2cbe Progress bars and output formatting 2014-09-19 15:52:23 -07:00