心跳周期小于10min时,10分钟收不到心跳才会重启

N938
XI.CHEN 6 months ago
parent f0ed4adea3
commit bf9ee3aea8

@ -420,7 +420,10 @@ public class MpMasterService extends Service {
ex.printStackTrace();
}
if (mPreviousMpHbTime <= ts && ts - mPreviousMpHbTime > mMpHeartbeatDuration * 2) {
long tempduration = mMpHeartbeatDuration;
if(mMpHeartbeatDuration < 600000)
tempduration = 300000;
if (mPreviousMpHbTime <= ts && ts - mPreviousMpHbTime > tempduration * 2) {
// MpApp is not running
if (ts - mTimeToStartMpApp >= 1800000) {
MicroPhotoContext.restartMpApp(context, "MpMST Keep Alive Detection");

Loading…
Cancel
Save