Skip to content

Commit

Permalink
fix(accelerator/nvidia/gpm): add missing Healthy: true field (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
gyuho authored Sep 9, 2024
1 parent d9f4acf commit 96f1684
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/accelerator/nvidia/gpm/component_output.go
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ func ParseStatesToOutput(states ...components.State) (*Output, error) {
func (o *Output) States() ([]components.State, error) {
b, _ := o.JSON()
state := components.State{
Name: StateNameGPM,
Name: StateNameGPM,
Healthy: true,
ExtraInfo: map[string]string{
StateKeyGPMData: string(b),
StateKeyGPMEncoding: StateValueGPMEncodingJSON,
Expand Down

0 comments on commit 96f1684

Please sign in to comment.