bump pause before running data tests to give db time to come online

This commit is contained in:
Collin M. Barrett 2019-10-01 15:55:43 -05:00
parent fd4032e1f2
commit a40b72a79b

View file

@ -12,7 +12,7 @@ public async void SeedOrUpdateAsync_DoesNotThrowException()
{
//TODO: replace with Polly or similar to optimize time waste
// allow time for db to init
Thread.Sleep(10000);
Thread.Sleep(15000);
const string connString = "Server=mariadb;Database=filterlists;Uid=filterlists;Pwd=filterlists;";
var options = new DbContextOptionsBuilder<FilterListsDbContext>()