diff --git a/src/Runner.Common/RunnerDotcomServer.cs b/src/Runner.Common/RunnerDotcomServer.cs index c03e60bb7..0f6d3ce1d 100644 --- a/src/Runner.Common/RunnerDotcomServer.cs +++ b/src/Runner.Common/RunnerDotcomServer.cs @@ -224,7 +224,7 @@ namespace GitHub.Runner.Common } catch (Exception ex) when (retry < maxRetryAttemptsCount && responseStatus != System.Net.HttpStatusCode.NotFound) { - Trace.Error($"{errorMessage} -- Atempt: {retry}"); + Trace.Error($"{errorMessage} -- Attempt: {retry}"); Trace.Error(ex); } } diff --git a/src/Runner.Listener/Configuration/ConfigurationManager.cs b/src/Runner.Listener/Configuration/ConfigurationManager.cs index 046a5b6d2..05b93cb58 100644 --- a/src/Runner.Listener/Configuration/ConfigurationManager.cs +++ b/src/Runner.Listener/Configuration/ConfigurationManager.cs @@ -744,7 +744,7 @@ namespace GitHub.Runner.Listener.Configuration catch (Exception ex) when (retryCount < 2 && responseStatus != System.Net.HttpStatusCode.NotFound) { retryCount++; - Trace.Error($"Failed to get JIT runner token -- Atempt: {retryCount}"); + Trace.Error($"Failed to get JIT runner token -- Attempt: {retryCount}"); Trace.Error(ex); } } @@ -807,7 +807,7 @@ namespace GitHub.Runner.Listener.Configuration catch (Exception ex) when (retryCount < 2 && responseStatus != System.Net.HttpStatusCode.NotFound) { retryCount++; - Trace.Error($"Failed to get tenant credentials -- Atempt: {retryCount}"); + Trace.Error($"Failed to get tenant credentials -- Attempt: {retryCount}"); Trace.Error(ex); } }