summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGunnar Mills <gmills@us.ibm.com>2019-01-04 15:10:04 -0600
committerGunnar Mills <gmills@us.ibm.com>2019-01-04 15:13:07 -0600
commit700869843888e9370c987639e39c711ce07cd561 (patch)
tree448533ff0fe5d71b298dc51330f640acdfcde74a
parentcf7219ce64d600d10b1de4eca1f0c690dfb32344 (diff)
downloadphosphor-webui-700869843888e9370c987639e39c711ce07cd561.tar.gz
phosphor-webui-700869843888e9370c987639e39c711ce07cd561.zip
Fix RequestedBMCTransition capitalization
The property name is capitalized as RequestedBMCTransition. BMCweb is case sensitive. https://github.com/openbmc/phosphor-dbus-interfaces/blob/f019ea0979ce9d29654e0ce7bfbeb57783c59bd9/xyz/openbmc_project/State/BMC.interface.yaml#L8 Tested: Rebooted a Witherspoon system via GUI. Change-Id: Ie1379125d32d4c8e17aadcac7e0d65c89d49d2bd Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
-rw-r--r--app/common/services/api-utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/common/services/api-utils.js b/app/common/services/api-utils.js
index 908dd27..09e2690 100644
--- a/app/common/services/api-utils.js
+++ b/app/common/services/api-utils.js
@@ -897,7 +897,7 @@ window.angular && (function(angular) {
$http({
method: 'PUT',
url: DataService.getHost() +
- '/xyz/openbmc_project/state/bmc0/attr/RequestedBmcTransition',
+ '/xyz/openbmc_project/state/bmc0/attr/RequestedBMCTransition',
withCredentials: true,
data: JSON.stringify(
{'data': 'xyz.openbmc_project.State.BMC.Transition.Reboot'})
OpenPOWER on IntegriCloud