Skip to content

Commit 805eb26

Browse files
authored
Merge pull request #2735 from AuxMon/dev
Get-AzureRmAutoscaleSetting mixes up Maximum and Minimum
2 parents 02354e6 + e5c4f8d commit 805eb26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ResourceManager/Insights/Commands.Insights/OutputClasses/PSToStringExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,8 +195,8 @@ public static string ToString(this ScaleCapacity scaleCapacity, int indentationT
195195
{
196196
output.AppendLine();
197197
output.AddSpacesInFront(indentationTabs).AppendLine("Default : " + scaleCapacity.Default);
198-
output.AddSpacesInFront(indentationTabs).AppendLine("Minimum : " + scaleCapacity.Maximum);
199-
output.AddSpacesInFront(indentationTabs).Append("Maximum : " + scaleCapacity.Minimum);
198+
output.AddSpacesInFront(indentationTabs).AppendLine("Minimum : " + scaleCapacity.Minimum);
199+
output.AddSpacesInFront(indentationTabs).Append("Maximum : " + scaleCapacity.Maximum);
200200
}
201201

202202
return output.ToString();

0 commit comments

Comments
 (0)