Skip to content
Snippets Groups Projects
Commit fd4d29cd authored by Antonin Hottois's avatar Antonin Hottois
Browse files

Changed unreachable attribute error handling

parent 35252135
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
### Changed ### Changed
- The messages are now stored in a BlockingQueue (handling concurrency) - The messages are now stored in a BlockingQueue (handling concurrency)
- Modified some logging and status handling - Modified some logging and status handling
- Device no longer go in FAULT state when monitored attribute can't be reached while Parser is reachable
## [1.0.6] - 02/07/2020 ## [1.0.6] - 02/07/2020
......
No preview for this file type
...@@ -127,7 +127,7 @@ final public class TriggerPulserTask extends TimerTask { ...@@ -127,7 +127,7 @@ final public class TriggerPulserTask extends TimerTask {
try { try {
tmpMessage = monitoredAttributesList.get(i).checkAttribute(); tmpMessage = monitoredAttributesList.get(i).checkAttribute();
} catch (DevFailed e) { } catch (DevFailed e) {
errorHandler.sendFault(e, "Cannot check attribute " + monitoredAttributesList.get(i).getName()); errorHandler.sendAlarm(e, "Cannot check attribute " + monitoredAttributesList.get(i).getName());
isStatusClean = false; isStatusClean = false;
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment