summaryrefslogtreecommitdiffstats
path: root/src/elog.cpp
diff options
context:
space:
mode:
authorMarri Devender Rao <devenrao@in.ibm.com>2018-04-19 05:51:35 -0500
committerBrad Bishop <bradleyb@fuzziesquirrel.com>2018-06-05 02:10:49 +0000
commitee4c6ebfd9e1697501b6fa0225d684867796a637 (patch)
treecd8754af8ca7c2c77ba038c491d848f96d7ce649 /src/elog.cpp
parentfb05210d0ef901fef164dbf8e8187a641794759b (diff)
downloadphosphor-dbus-monitor-ee4c6ebfd9e1697501b6fa0225d684867796a637.tar.gz
phosphor-dbus-monitor-ee4c6ebfd9e1697501b6fa0225d684867796a637.zip
Fix callback unit test failure
Recently changes has been done in phosphor-logging commit method causing the unit test failure with error message "Error in mapper call". Earlier commit method used to return error but the same has been modified to throw exception now. Fixed to return from the callback method if context is start Change-Id: I606c638bd2d0bc2003af0b284586e53809bbca21 Signed-off-by: Marri Devender Rao <devenrao@in.ibm.com>
Diffstat (limited to 'src/elog.cpp')
-rw-r--r--src/elog.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/elog.cpp b/src/elog.cpp
index 9cd18c8..ba6e522 100644
--- a/src/elog.cpp
+++ b/src/elog.cpp
@@ -24,6 +24,12 @@ namespace monitoring
void ElogBase::operator()(Context ctx)
{
+ if (ctx == Context::START)
+ {
+ // No action should be taken as this call back is being called from
+ // daemon Startup.
+ return;
+ }
log();
}
OpenPOWER on IntegriCloud