I have an iOS/Android application that is using Azure Mobile Sync. Most of the time everything works as you would expect but there is a scenario that is dogging me quite a bit. The scenario is:
Phone A creates a record. Phone B creates a record. Phone A updates phone B's record. Phone B updates phone A's record. Phone C gets both record creation and the latest updates correctly from the cloud. Phone A has it's original record but fails to pull in phone B's update. Phone B has it's original record but fails to pull in phone A's update.
I have verified there are not sync conflicts and the data is being pulled and most of the time this doesn't happen. Mostly, phone A/B/C all get updated properly. I extracted the sqlite database from my Android phone and I've checked the _operations table and I do not see any sync operations for the records in question. It's like the system thinks it's already up to date and doesn't try to sync.
Is there a way to force pull everything from the cloud? Thanks!