|
@@ -41,9 +41,7 @@ void UploadFSM::OnSysVarEvent( const char *pszKey, const char *pszValue,const ch
|
|
|
{
|
|
|
Dbg("rx sysvar %s from %s, %s to %s", pszKey, pszEntityName, pszOldValue, pszValue);
|
|
|
if (pszValue[0] == 'O') {
|
|
|
- //PostEventFIFO(new FSMEvent(USER_EVT_JMP_ENABLE));
|
|
|
- LogWarn(Severity_High, Error_NotSupport, 0, "方便查日志,一轮测试期间还是不做任何上传操作!");
|
|
|
- PostEventFIFO(new FSMEvent(USER_EVT_JMP_DISABLE));
|
|
|
+ PostEventFIFO(new FSMEvent(USER_EVT_JMP_ENABLE));
|
|
|
} else {
|
|
|
PostEventFIFO(new FSMEvent(USER_EVT_JMP_DISABLE));
|
|
|
}
|
|
@@ -165,9 +163,7 @@ void UploadFSM::s0_on_entry()
|
|
|
ErrorCodeEnum Error = m_pEntity->GetFunction()->GetSysVar("CallState", strValue);
|
|
|
if (Error == Error_Succeed) {
|
|
|
if (strValue[0] == 'O') { // only upload when CallState in offline state
|
|
|
- //PostEventFIFO(new FSMEvent(USER_EVT_JMP_ENABLE));
|
|
|
- LogWarn(Severity_High, Error_NotSupport, 0, "方便查日志,一轮测试期间还是不做任何上传操作!");
|
|
|
- PostEventFIFO(new FSMEvent(USER_EVT_JMP_DISABLE));
|
|
|
+ PostEventFIFO(new FSMEvent(USER_EVT_JMP_ENABLE));
|
|
|
} else {
|
|
|
PostEventLIFO(new FSMEvent(USER_EVT_JMP_DISABLE));
|
|
|
}
|