Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to resolve getting a response for wrong URI in Update Service URI (/redfish/v1/UpdateService/FirmwareInventory/) After the fix a wrong URI that partially matches the last characters in a valid URI now gets a 404 as shown below curl -k -H "X-Auth-Token: $bmc_token" -X GET https://$bmc_ip/redfish/v1/UpdateService/FirmwareInventory/b8 { "@odata.id": "/redfish/v1/UpdateService/FirmwareInventory/b8", "error": { "@Message.ExtendedInfo": [ { "@odata.type": "#Message.v1_1_1.Message", "Message": "The resource at the URI '/redfish/v1/UpdateService/FirmwareInventory/b8' was not found.", "MessageArgs": [ "/redfish/v1/UpdateService/FirmwareInventory/b8" ], "MessageId": "Base.1.19.ResourceMissingAtURI", "MessageSeverity": "Critical", "Resolution": "Place a valid resource at the URI or correct the URI and resubmit the request." } ], "code": "Base.1.19.ResourceMissingAtURI", "message": "The resource at the URI '/redfish/v1/UpdateService/FirmwareInventory/b8' was not found." } }
- Loading branch information