Add console page

This commit is contained in:
2020-07-04 16:25:04 -04:00
parent 9cb8891024
commit 5c25811561
25 changed files with 288 additions and 22 deletions

View File

@@ -178,7 +178,7 @@ func (database *Database) GetAllWorkerStats() *[]WorkerStats {
db := database.getDB()
rows, err := db.Query(`SELECT alias, closed_task_count, paused, worker.id
FROM worker WHERE closed_task_count>0 LIMIT 50`)
FROM worker`)
handleErr(err)
if err != nil {