Fixed deadlock issue while running a large number of benchmarks. Changed names of tasks to indicate what they are running. Added name to task schema to append it to the name more easily.

This commit is contained in:
Renan DelValle 2016-09-19 20:25:10 -04:00
parent 8ddfe8e585
commit e0dc0c7368
2 changed files with 32 additions and 22 deletions

View file

@ -7,6 +7,7 @@ import (
)
type Task struct {
Name string `json:"name"`
CPU float64 `json:"cpu"`
RAM float64 `json:"ram"`
Watts float64 `json:"watts"`