Browse Source

Fix typo in Migrator.cs lock log message (#1120)

pull/1121/head
Paul Astbury-Thomas 2 years ago
committed by GitHub
parent
commit
7480d947c0
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      backend/src/Squidex.Infrastructure/Migrations/Migrator.cs

2
backend/src/Squidex.Infrastructure/Migrations/Migrator.cs

@ -86,7 +86,7 @@ public sealed class Migrator
{
while (!await migrationStatus.TryLockAsync(ct))
{
log.LogInformation("Could not acquire lock to start migrating. Tryping again in {time}ms.", LockWaitMs);
log.LogInformation("Could not acquire lock to start migrating. Trying again in {time}ms.", LockWaitMs);
await Task.Delay(LockWaitMs, ct);
}
}

Loading…
Cancel
Save