summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Feist <james.feist@linux.intel.com>2019-07-19 10:17:13 -0700
committerJames Feist <james.feist@linux.intel.com>2019-07-19 10:17:13 -0700
commit2a833c77b5731239820f74eec8f312371b0b0e4f (patch)
tree112a2c2b01884a15b948b994e341af5ccdfc3374
parent8aae75ad51881046f2fab9ca64c7addfb004e06b (diff)
downloadbmcweb-2a833c77b5731239820f74eec8f312371b0b0e4f.tar.gz
bmcweb-2a833c77b5731239820f74eec8f312371b0b0e4f.zip
Fix Error on Missing interface
Missing interface != 500 error, just means less data we can show. Tested: No 500 error on systems with missing interface Change-Id: Ifaecd67f8f4f6faed26c7a24ab79dfbd82462291 Signed-off-by: James Feist <james.feist@linux.intel.com>
-rw-r--r--redfish-core/lib/systems.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/redfish-core/lib/systems.hpp b/redfish-core/lib/systems.hpp
index 6da9fc6..c092379 100644
--- a/redfish-core/lib/systems.hpp
+++ b/redfish-core/lib/systems.hpp
@@ -886,7 +886,7 @@ static void getBootProperties(std::shared_ptr<AsyncResp> aResp)
if (ec)
{
BMCWEB_LOG_DEBUG << "DBUS response error " << ec;
- messages::internalError(aResp->res);
+ // not an error, don't have to have the interface
return;
}
OpenPOWER on IntegriCloud