Skip to content

Commit 0669b9b

Browse files
committed
Merged PR 738130: Update some terminology to orchestrator.
Update some terminology to orchestrator.
1 parent 4ebc7f2 commit 0669b9b

File tree

5 files changed

+4
-7
lines changed

5 files changed

+4
-7
lines changed

Public/Src/App/Bxl/Args.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2109,9 +2109,6 @@ private void HandleExperimentalOption(
21092109

21102110
switch (experimentalOptionAndValue.Item1.ToUpperInvariant())
21112111
{
2112-
case "DONTBRINGOUTPUTSTOMASTER":
2113-
// deprecated (no effect)
2114-
break;
21152112
case "USEHARDLINKS":
21162113
// Deprecated alias: Hardlinks are no longer experimental, so we treat this as an alias for the new /useHardLinks option.
21172114
engineConfiguration.UseHardlinks = experimentalOptionAndValue.Item2;

Public/Src/Engine/Dll/Distribution/NotifyOrchestratorExecutionLogTarget.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ protected override void ReportUnhandledEvent<TEventData>(TEventData data)
9595
private class NotifyStream : Stream
9696
{
9797
/// <summary>
98-
/// Threshold over which events are sent to master. 32MB limit
98+
/// Threshold over which events are sent to orchestrator. 32MB limit
9999
/// </summary>
100100
internal const int EventDataSizeThreshold = 1 << 16; //64kb
101101
//1 << 25;

Public/Src/Tools/AdoBuildRunner/Build/BuildExecutor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public int ExecuteDistributedBuildAsOrchestrator(BuildContext buildContext, stri
108108
Logger.Info($@"Launching distributed build as orchestrator");
109109
return ExecuteBuild(
110110
ExtractAndEscapeCommandLineArguments(buildArguments) +
111-
$" /distributedBuildRole:master" +
111+
$" /distributedBuildRole:orchestrator" +
112112
$" /distributedBuildServicePort:{Constants.MachineGrpcPort}" +
113113
$" /relatedActivityId:{relatedSessionId}",
114114
buildContext.SourcesDirectory

Public/Src/Tools/DistributedBuildRunner/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ private static bool ConstructCommandLines(uint numberOfWorkers, out string exePa
181181

182182
// Construct the master command line
183183
InitializeArgs(commandLineBuilder, commonArgs + " " + masterArgs, 0, sourceRootLetter, objectRootLetter, masterCacheRoot);
184-
commandLineBuilder.AppendArg("/distributedBuildRole:master");
184+
commandLineBuilder.AppendArg("/distributedBuildRole:orchestrator");
185185

186186
var masterPort = GetPortNumber();
187187
var workerPorts = new List<int>();

Public/Src/Tools/DropDaemon/DropDaemon.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ private async Task<IIpcResult> UploadBcdeFileAsync(DropConfig dropConfig)
846846
}
847847

848848
/// <summary>
849-
/// Generates and uploads the Manifest.json on the master using all file hashes computed and stored
849+
/// Generates and uploads the Manifest.json on the orchestrator using all file hashes computed and stored
850850
/// by workers using <see cref="VsoClient.RegisterFilesForBuildManifestAsync"/> for the given drop.
851851
/// Should be called only when DropConfig.GenerateBuildManifest is true.
852852
/// </summary>

0 commit comments

Comments
 (0)