Create vssconnection to actions service when URL provided. (#3751)

This commit is contained in:
Tingluo Huang
2025-03-14 13:55:57 -04:00
committed by GitHub
parent 0195d7ca77
commit 07310cabc0
3 changed files with 20 additions and 6 deletions

View File

@@ -360,7 +360,7 @@ namespace GitHub.Runner.Listener
}
}
private IMessageListener GetMesageListener(RunnerSettings settings)
private IMessageListener GetMessageListener(RunnerSettings settings)
{
if (settings.UseV2Flow)
{
@@ -379,7 +379,7 @@ namespace GitHub.Runner.Listener
try
{
Trace.Info(nameof(RunAsync));
_listener = GetMesageListener(settings);
_listener = GetMessageListener(settings);
CreateSessionResult createSessionResult = await _listener.CreateSessionAsync(HostContext.RunnerShutdownToken);
if (createSessionResult == CreateSessionResult.SessionConflict)
{