This repository has been archived by the owner on Feb 29, 2020. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix potential race conditions while adding items to sync table
- The write operation dispatch queue is defined as concurrent, however, the tasks that run in it are not thread safe. - Changing dispatch queue type from concurrent to serial will take care of it - In the future, if needed, we can change it back to concurrent and make the tasks that run in it thread safe.
- Loading branch information