mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
Fixed some minor issues
This commit is contained in:
parent
a03a54f35e
commit
4f839a5b61
2 changed files with 4 additions and 3 deletions
|
|
@ -126,7 +126,7 @@ func UpdateFirmware(client *bmclib.Client, l *log.Logger, q *UpdateParams) error
|
|||
}
|
||||
|
||||
func UpdateFirmwareRemote(q *UpdateParams) error {
|
||||
url := baseRedfishUrl(&q.QueryParams) + "/UpdateService/Actions/SimpleUpdate"
|
||||
url := baseRedfishUrl(&q.QueryParams) + "/redfish/v1/UpdateService/Actions/SimpleUpdate"
|
||||
headers := map[string]string {
|
||||
"Content-Type": "application/json",
|
||||
"cache-control": "no-cache",
|
||||
|
|
@ -153,7 +153,7 @@ func UpdateFirmwareRemote(q *UpdateParams) error {
|
|||
}
|
||||
|
||||
func GetUpdateStatus(q *UpdateParams) error {
|
||||
url := baseRedfishUrl(&q.QueryParams) + "/UpdateService"
|
||||
url := baseRedfishUrl(&q.QueryParams) + "/redfish/v1/UpdateService"
|
||||
res, body, err := util.MakeRequest(url, "GET", nil, nil)
|
||||
if err != nil {
|
||||
return fmt.Errorf("something went wrong: %v", err)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue