summaryrefslogtreecommitdiffstats
path: root/watchdog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'watchdog.cpp')
-rw-r--r--watchdog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/watchdog.cpp b/watchdog.cpp
index 9e7ec23..9301fb0 100644
--- a/watchdog.cpp
+++ b/watchdog.cpp
@@ -112,8 +112,8 @@ void Watchdog::timeOutHandler()
action = fallback->action;
}
- auto target = actionTargets.find(action);
- if (target == actionTargets.end())
+ auto target = actionTargetMap.find(action);
+ if (target == actionTargetMap.end())
{
log<level::INFO>("watchdog: Timed out with no target",
entry("ACTION=%s", convertForMessage(action).c_str()));
OpenPOWER on IntegriCloud