summaryrefslogtreecommitdiff
path: root/redfish-core/src
diff options
context:
space:
mode:
authorManojkiran Eda <manojkiran.eda@gmail.com>2021-04-21 20:16:14 +0300
committerEd Tanous <ed@tanous.net>2021-05-04 19:32:06 +0300
commit4a0bf539728cada806fc7a16a208edc6332bdb86 (patch)
tree551d6dfd880fca1dd0b867a3356dea6d1049e47f /redfish-core/src
parentd3d26ba270b55ad0d76b45816fbc8fb6a8cd4489 (diff)
downloadbmcweb-4a0bf539728cada806fc7a16a208edc6332bdb86.tar.xz
Change the word TS to Time Stamp & add time unit
- The Message argument in the BIOSPOSTCode Message Entry uses short form wording for TS (Time Stamp) & without any time unit. - As the Message argument is directly displayed on OpenBMC GUI as it is, word "TS" would create customer confusion due to it not being a well known acronym. Also a field like this that captures a physical quantity(time) should have units. - Redfish clients should not be parsing the message argument, so changing this wording should not break them. - Also, this commit changes ":" to ";" in the Message argument to makes things look consistent. - As we changed the content of Message in the Message Entry, we had to bump up the minor version of the Message registry. Tested By: 1. Redfish Validator Passed. Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com> Change-Id: I17924c2dfdcf34563f8f8cd325011e13cb70e476
Diffstat (limited to 'redfish-core/src')
-rw-r--r--redfish-core/src/error_messages.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/redfish-core/src/error_messages.cpp b/redfish-core/src/error_messages.cpp
index 7059a3845b..ad5f819b45 100644
--- a/redfish-core/src/error_messages.cpp
+++ b/redfish-core/src/error_messages.cpp
@@ -2111,7 +2111,7 @@ nlohmann::json invalidUpload(const std::string& arg1, const std::string& arg2)
{
return nlohmann::json{
{"@odata.type", "/redfish/v1/$metadata#Message.v1_1_1.Message"},
- {"MessageId", "OpenBMC.0.1.0.InvalidUpload"},
+ {"MessageId", "OpenBMC.0.2.InvalidUpload"},
{"Message", "Invalid file uploaded to " + arg1 + ": " + arg2 + "."},
{"MessageArgs", {arg1, arg2}},
{"MessageSeverity", "Warning"},