From 7480d947c07ec05a62febd7b5c813e04ba76f9ed Mon Sep 17 00:00:00 2001 From: Paul Astbury-Thomas Date: Mon, 19 Aug 2024 10:20:43 +0100 Subject: [PATCH] Fix typo in Migrator.cs lock log message (#1120) --- backend/src/Squidex.Infrastructure/Migrations/Migrator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/Squidex.Infrastructure/Migrations/Migrator.cs b/backend/src/Squidex.Infrastructure/Migrations/Migrator.cs index 7b46b87914..c702b2619b 100644 --- a/backend/src/Squidex.Infrastructure/Migrations/Migrator.cs +++ b/backend/src/Squidex.Infrastructure/Migrations/Migrator.cs @@ -86,7 +86,7 @@ private async Task 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); } }