From b15525a8caa564c4f0cd8f3e5b25219a355fd61e Mon Sep 17 00:00:00 2001 From: JoannaaKL Date: Thu, 15 Sep 2022 07:58:33 +0000 Subject: [PATCH] Rename Healthcheck back to ContainerHealthcheck --- src/Runner.Worker/ContainerOperationProvider.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Runner.Worker/ContainerOperationProvider.cs b/src/Runner.Worker/ContainerOperationProvider.cs index 8433f59e5..79d2190a4 100644 --- a/src/Runner.Worker/ContainerOperationProvider.cs +++ b/src/Runner.Worker/ContainerOperationProvider.cs @@ -108,7 +108,7 @@ namespace GitHub.Runner.Worker var unhealthyContainers = new List(); foreach (var container in containers.Where(c => !c.IsJobContainer)) { - var healthcheck = await Healthcheck(executionContext, container); + var healthcheck = await ContainerHealthcheck(executionContext, container); if (!string.Equals(healthcheck, "healthy", StringComparison.OrdinalIgnoreCase)) { @@ -328,7 +328,7 @@ namespace GitHub.Runner.Worker { if (!container.IsJobContainer && !container.FailedInitialization) { - var healthcheck = await Healthcheck(executionContext, container); + var healthcheck = await ContainerHealthcheck(executionContext, container); if (string.Equals(healthcheck, "healthy", StringComparison.OrdinalIgnoreCase)) { // Print logs for service container jobs (not the "action" job itself b/c that's already logged).