Removing the section 'Waiting for all services to be ready'

Since nested subsections are not being displayed properly and we already need one subsection per service error.
This commit is contained in:
JoannaaKL
2022-09-07 08:39:57 +00:00
parent cfcf0831f3
commit 2d4dc37d49

View File

@@ -98,13 +98,12 @@ namespace GitHub.Runner.Worker
await StartContainerAsync(executionContext, container);
}
executionContext.Output("##[group]Waiting for all services to be ready");
executionContext.Output("Waiting for all services to be ready");
foreach (var container in containers.Where(c => !c.IsJobContainer))
{
var healthcheck = await Healthcheck(executionContext, container);
await ContainerHealthcheckLogs(executionContext, container, healthcheck);
}
executionContext.Output("##[endgroup]");
}
public async Task StopContainersAsync(IExecutionContext executionContext, object data)