Skip to content

Commit

Permalink
add new description field
Browse files Browse the repository at this point in the history
  • Loading branch information
Omarabdul3ziz committed Apr 17, 2024
1 parent dc2a02d commit b5cec78
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions grid-client/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,10 @@ func (n *NodeClient) SystemVersion(ctx context.Context) (ver Version, err error)

// TaskResult holds the perf test result
type TaskResult struct {
Name string `json:"name"`
Timestamp uint64 `json:"timestamp"`
Result interface{} `json:"result"`
Name string `json:"name"`
Description string `json:"description"`
Timestamp uint64 `json:"timestamp"`
Result interface{} `json:"result"`
}

// GetPerfTestsResults get all perf tests results
Expand Down

0 comments on commit b5cec78

Please sign in to comment.