Merged PR 708850: Remove additional status line for pips waiting on resources

This removes the additional line on the console below the main status line that gets displayed with pips are resourced paused. ex:
`3 running pips waiting on resources`

The data is already shown in the primary status and we want to decrease the amount of scrolling back people have to do in the ADO console view when looking at builds that have already completed.
This commit is contained in:
Michael Pysson 2023-03-23 23:57:25 +00:00
Родитель 0651523882
Коммит 1711cacb3a
2 изменённых файлов: 1 добавлений и 16 удалений

Просмотреть файл

@ -352,15 +352,6 @@ namespace BuildXL
filePipsTotal,
remoteProcs);
if (pipsWaitingOnResources > 0)
{
sb.AppendLine();
sb.AppendFormat(
CultureInfo.InvariantCulture,
Strings.ConsoleListener_PipsResourceWaitingStatusLine,
pipsWaitingOnResources);
}
string standardStatus = sb.ToString();
string updatingStatus = GetRunningPipsMessage(standardStatus, perfInfo);

Просмотреть файл

@ -59,10 +59,7 @@
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root"
xmlns=""
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
@ -120,9 +117,6 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="ConsoleListener_PipsResourceWaitingStatusLine" xml:space="preserve">
<value>{0} running pips waiting on resources</value>
</data>
<data name="App_Errors_LogsDirectory" xml:space="preserve">
<value> {0} ERROR(S). Log Directory: {1}</value>
</data>