Dashboard -storage group activity doesn't change
-
Running Version 1.3.0
SVN Revision: 6050Dashboard has been stuck showing 4 active tasks and 1 queued for a few weeks now. Even with no running or scheduled tasks the dashboard view does not update. Any way to refresh this?
-
The below code will delete all Queued, Checked-In, and In-Progress tasks.
mysql -D fog DELETE FROM `tasks` WHERE `taskStateID` IN (1,2,3); exit
The below code will blast the entire tasks table. If you do this, all the history about snapin & image deployments will be thrown out, but you’ll be able to start fresh.
mysql -D fog TRUNCATE TABLE `tasks`; exit
-
@Wayne-Workman Thanks! That cleared it up.