Merge "Prevent account reconcilliation during migration" into ub-gmail-ur14-dev

This commit is contained in:
Martin Hibdon 2014-08-28 20:57:28 +00:00 committed by Android (Google) Code Review
commit e87b38faf5
1 changed files with 7 additions and 1 deletions

View File

@ -37,6 +37,7 @@ import com.android.email.service.EmailServiceUtils.EmailServiceInfo;
import com.android.emailcommon.Logging;
import com.android.emailcommon.provider.Account;
import com.android.emailcommon.provider.HostAuth;
import com.android.emailcommon.utility.MigrationUtils;
import com.android.mail.utils.LogUtils;
import com.google.common.collect.ImmutableList;
@ -159,8 +160,13 @@ public class AccountReconciler {
boolean exchangeAccountDeleted = false;
LogUtils.d(Logging.LOG_TAG, "reconcileAccountsInternal");
// See if we should have the Eas authenticators enabled.
if (MigrationUtils.migrationInProgress()) {
LogUtils.d(Logging.LOG_TAG, "deferring reconciliation, migration in progress");
return false;
}
// See if we should have the Eas authenticators enabled.
if (!EmailServiceUtils.isServiceAvailable(context,
context.getString(R.string.protocol_eas))) {
EmailServiceUtils.disableExchangeComponents(context);