Skip to content

Commit 3b3166f

Browse files
authored
Update service-fabric-cluster-scale-up-down.md
1 parent 327f6a5 commit 3b3166f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/service-fabric/service-fabric-cluster-scale-up-down.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The steps for manually removing node state apply only to node types with a *Bron
108108
To keep the nodes of the cluster evenly distributed across upgrade and fault domains, and hence enable their even utilization, the most recently created node should be removed first. In other words, the nodes should be removed in the reverse order of their creation. The most recently created node is the one with the greatest `virtual machine scale set InstanceId` property value. The code examples below return the most recently created node.
109109

110110
```powershell
111-
Get-ServiceFabricNode | Sort NodeInstanceId -Descending | Select -First 1
111+
Get-ServiceFabricNode | Sort-Object NodeInstanceId -Descending | Select-Object -First 1
112112
```
113113

114114
```azurecli

0 commit comments

Comments
 (0)