1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-17 07:30:59 -05:00

Fix typos in comments (#2876)

This commit is contained in:
Jim Hays
2023-05-09 11:38:47 -04:00
committed by GitHub
parent 0bd0910c39
commit f9038472ce
12 changed files with 13 additions and 13 deletions

View File

@ -50,7 +50,7 @@ public class CustomRedisProcessingStrategy : RedisProcessingStrategy
return SkipRateLimitResult();
}
// Check if any Redis timeouts have occured recently
// Check if any Redis timeouts have occurred recently
if (_memoryCache.TryGetValue<TimeoutCounter>(_redisTimeoutCacheKey, out var timeoutCounter))
{
// We've exceeded threshold, backoff Redis and skip rate limiting for now

View File

@ -77,7 +77,7 @@ public static class LoggerFactoryExtensions
}
else if (CoreHelpers.SettingHasValue(globalSettings?.Syslog.Destination))
{
// appending sitename to project name to allow eaiser identification in syslog.
// appending sitename to project name to allow easier identification in syslog.
var appName = $"{globalSettings.SiteName}-{globalSettings.ProjectName}";
if (globalSettings.Syslog.Destination.Equals("local", StringComparison.OrdinalIgnoreCase))
{