Skip to content

Commit

Permalink
Update firmware install status for scheduling state
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeefreak101 committed Nov 27, 2023
1 parent b145fcb commit 300aa47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions providers/redfish/firmware.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,9 @@ func (c *Conn) FirmwareInstallStatus(ctx context.Context, installVersion, compon

// so much for standards...
switch state {
case "starting", "downloading", "downloaded":
case "starting", "downloading", "downloaded", "scheduling":
return constants.FirmwareInstallInitializing, nil
case "running", "stopping", "cancelling", "scheduling":
case "running", "stopping", "cancelling":
return constants.FirmwareInstallRunning, nil
case "pending", "new":
return constants.FirmwareInstallQueued, nil
Expand Down

0 comments on commit 300aa47

Please sign in to comment.