Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(pg): Fixed data race conditions in unit tests
Since these values are being written in a separate go routine, it is possible for a datarace to happen since we are reading them unatomically. This just makes it so that both the reads ands writes are done atomically. Resolves #76
- Loading branch information