fix small bug (#2396)

This commit is contained in:
Yashwanth Anantharaju
2023-01-30 10:00:31 -05:00
committed by GitHub
parent ca7be16dd3
commit 24a27efd4f

View File

@@ -29,7 +29,7 @@ namespace GitHub.Runner.Common
{ {
requestUri = serverUri; requestUri = serverUri;
_connection = VssUtil.CreateRawConnection(new Uri(serverUri.Authority), credentials); _connection = VssUtil.CreateRawConnection(serverUri, credentials);
_runServiceHttpClient = await _connection.GetClientAsync<RunServiceHttpClient>(); _runServiceHttpClient = await _connection.GetClientAsync<RunServiceHttpClient>();
_hasConnection = true; _hasConnection = true;
} }