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
512e0e7b5c
commit
992455048a
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