Fix wrong check in EventService events
Sending async event logs to event listener is
broken due to commit 23a21a1cbed23ace4174664950e595df961e9e69.
Correct the check to make EventService back to functional
state.
Tested:
- Redfish event logs are properly sent to subscribers.
Signed-off-by: AppaRao Puli <apparao.puli@linux.intel.com>
Change-Id: If232846a2b0ac694205731a801e55dc4bd5e928a
diff --git a/redfish-core/include/event_service_manager.hpp b/redfish-core/include/event_service_manager.hpp
index 54dafb4..3db9f0c 100644
--- a/redfish-core/include/event_service_manager.hpp
+++ b/redfish-core/include/event_service_manager.hpp
@@ -1208,7 +1208,7 @@
static void watchRedfishEventLogFile()
{
- if (inotifyConn)
+ if (!inotifyConn)
{
return;
}