Closed kushsharma closed 14 hours ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
frontier | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Dec 4, 2024 3:43am |
Changes Missing Coverage | Covered Lines | Changed/Added Lines | % | ||
---|---|---|---|---|---|
internal/store/postgres/group_repository.go | 0 | 15 | 0.0% | ||
internal/store/postgres/organization_repository.go | 0 | 19 | 0.0% | ||
internal/store/postgres/billing_transactions_repository.go | 0 | 101 | 0.0% | ||
<!-- | Total: | 4 | 139 | 2.88% | --> |
Files with Coverage Reduction | New Missed Lines | % | ||
---|---|---|---|---|
internal/store/postgres/billing_transactions_repository.go | 2 | 3.06% | ||
<!-- | Total: | 2 | --> |
Totals | |
---|---|
Change from base Build 12112659884: | -0.002% |
Covered Lines: | 7630 |
Relevant Lines: | 24739 |
Currently there were chances to have race conditions while writing to transaction repository. I have added a test to verify it doesn't happen. Database is using
Serializable
as the isolation level to avoid overlapping transactions.