diff --git a/backend/src/Squidex.Infrastructure/Migrations/Migrator.cs b/backend/src/Squidex.Infrastructure/Migrations/Migrator.cs index 7b46b8791..c702b2619 100644 --- a/backend/src/Squidex.Infrastructure/Migrations/Migrator.cs +++ b/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); } }