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:
parent
8ddfe8e585
commit
e0dc0c7368
2 changed files with 32 additions and 22 deletions
1
task.go
1
task.go
|
@ -7,6 +7,7 @@ import (
|
|||
)
|
||||
|
||||
type Task struct {
|
||||
Name string `json:"name"`
|
||||
CPU float64 `json:"cpu"`
|
||||
RAM float64 `json:"ram"`
|
||||
Watts float64 `json:"watts"`
|
||||
|
|
Reference in a new issue