1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

Wait 20 seconds to allow database to come online

This commit is contained in:
Kyle Spearrin 2019-03-25 14:50:03 -04:00
parent b2045b92b4
commit d8361ff1d6

View File

@ -29,6 +29,9 @@ namespace Bit.Admin.HostedServices
public virtual async Task StartAsync(CancellationToken cancellationToken)
{
// Wait 20 seconds to allow database to come online
await Task.Delay(20000);
var maxMigrationAttempts = 10;
for(var i = 1; i <= maxMigrationAttempts; i++)
{