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

This commit is contained in:
Collin M. Barrett 2019-10-01 19:12:17 -05:00
parent a40b72a79b
commit 541d652427

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(15000);
Thread.Sleep(20000);
const string connString = "Server=mariadb;Database=filterlists;Uid=filterlists;Pwd=filterlists;";
var options = new DbContextOptionsBuilder<FilterListsDbContext>()