This commit is contained in:
TingluoHuang
2021-04-20 21:41:45 -04:00
parent 50ff391290
commit ad819dcda7
2 changed files with 4 additions and 6 deletions

View File

@@ -439,6 +439,7 @@ namespace GitHub.Runner.Listener
{
Trace.Info($"Send job request message to worker for job {message.JobId}.");
HostContext.WritePerfCounter($"RunnerSendingJobToWorker_{message.JobId}");
HostContext.GetService<ITerminal>().WriteLine($" Job message size: {JsonUtility.ToString(message).Length}");
using (var csSendJobRequest = new CancellationTokenSource(_channelTimeout))
{
await processChannel.SendAsync(

View File

@@ -1,19 +1,16 @@
namespace GitHub.Runner.Sdk
{
/***
* WARNING: This file is automatically regenerated on layout so the runner can provide version/commit info (do not manually edit it).
*/
public static class BuildConstants
{
public static class Source
{
public static readonly string CommitHash = "N/A";
public static readonly string CommitHash = "d14881b970bf72ee8e42719618cc5279ccdd1e4d";
}
public static class RunnerPackage
{
public static readonly string PackageName = "N/A";
public static readonly string Version = "0";
public static readonly string PackageName = "osx-x64";
public static readonly string Version = "2.277.1";
}
}
}