different max missed reply thresholds for STR FDIR
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good
This commit is contained in:
@ -2,9 +2,9 @@
|
||||
|
||||
#include "mission/acs/defs.h"
|
||||
|
||||
StrFdir::StrFdir(object_id_t strObject)
|
||||
StrFdir::StrFdir(object_id_t strObject, uint32_t missedReplyThreshold)
|
||||
: DeviceHandlerFailureIsolation(strObject, objects::NO_OBJECT) {
|
||||
missedReplyCount.setFailureThreshold(30);
|
||||
missedReplyCount.setFailureThreshold(missedReplyThreshold);
|
||||
}
|
||||
|
||||
ReturnValue_t StrFdir::eventReceived(EventMessage* event) {
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
class StrFdir : public DeviceHandlerFailureIsolation {
|
||||
public:
|
||||
StrFdir(object_id_t strObject);
|
||||
StrFdir(object_id_t strObject, uint32_t missedReplyThreshold);
|
||||
ReturnValue_t eventReceived(EventMessage* event) override;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user