osaf/libs/common/cpsv/include/cpd_proc.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
Problem: -------- Application gets fault code SA_AIS_ERR_NOT_EXIST in case it accesses the checkpoint with saCkptCheckpointWrite() when SCs are up after headless state. The problem happens due to combination of 2 conditions: 1. The process ID on SC-2 before headless and after headless are same. This leads their MDS destination are same. (This rarely happens) 2. Accessing checkpoint happens during updating checkpoint period after headless state (i.e the active replica hasn't been updated yet. After this period checkpoint can be accessed normally) Solution: --------- The problem happens temporarily during updating period. The solution is to reduce the updating time out. diff --git a/osaf/libs/common/cpsv/include/cpd_proc.h b/osaf/libs/common/cpsv/include/cpd_proc.h --- a/osaf/libs/common/cpsv/include/cpd_proc.h +++ b/osaf/libs/common/cpsv/include/cpd_proc.h @@ -20,7 +20,7 @@ /* CPD definations */ #define CPD_CPND_DOWN_RETENTION_TIME 600 /* 100 Milli Sec */ -#define CPD_CKPT_UPDATE_TIME 600 /* 10 Milli Sec */ +#define CPD_CKPT_UPDATE_TIME 300 /* 10 Milli Sec */ #define CPD_CLM_API_TIMEOUT 10000000000LL /* The count of non colloc replicas created by CPSv (Policy) */ #define CPD_NON_COLLOC_CREATED_REPLICA_CNT 1 ------------------------------------------------------------------------------ Mobile security can be enabling, not merely restricting. Employees who bring their own devices (BYOD) to work are irked by the imposition of MDM restrictions. Mobile Device Manager Plus allows you to control only the apps on BYO-devices by containerizing them, leaving personal data untouched! https://ad.doubleclick.net/ddm/clk/304595813;131938128;j _______________________________________________ Opensaf-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opensaf-devel
