timeForBackgroundSync() should have additional conditions besides just whether or not migration is ongoing

pull/14/head
Sam Bosley 13 years ago
parent 4247b89ed0
commit 8b78095821

@ -257,7 +257,7 @@ public class ActFmSyncThread {
} }
private boolean timeForBackgroundSync() { private boolean timeForBackgroundSync() {
return !Flags.check(Flags.SYNC_MIGRATION_ONGOING); return !Flags.check(Flags.SYNC_MIGRATION_ONGOING) && false; // TODO: replace && false with a real background sync condition
} }
private void repopulateQueueFromOutstandingTables() { private void repopulateQueueFromOutstandingTables() {

Loading…
Cancel
Save