Retry test-fixtures loading in case of transaction rollback (#5125)

This commit is contained in:
Mura Li 2018-10-21 04:48:33 +08:00 committed by techknowlogick
parent 2313121354
commit 583b1b8429
1 changed files with 10 additions and 1 deletions

View File

@ -19,5 +19,14 @@ func InitFixtures(helper testfixtures.Helper, dir string) (err error) {
// LoadFixtures load fixtures for a test database
func LoadFixtures() error {
return fixtures.Load()
var err error
// Database transaction conflicts could occur and result in ROLLBACK
// As a simple workaround, we just retry 5 times.
for i := 0; i < 5; i++ {
err = fixtures.Load()
if err == nil {
break
}
}
return err
}