Skip to content

Commit

Permalink
Fix typo in Migrator.cs lock log message (#1120)
Browse files Browse the repository at this point in the history
  • Loading branch information
slalFe committed Aug 19, 2024
1 parent a0a4b9f commit 7480d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/Squidex.Infrastructure/Migrations/Migrator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private async Task<bool> TryLockAsync(
{
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);
}
}
Expand Down

0 comments on commit 7480d94

Please sign in to comment.