diff --git a/src/ServiceFabric/ServiceFabric/Commands/RemoveAzureRmServiceFabricNodeType.cs b/src/ServiceFabric/ServiceFabric/Commands/RemoveAzureRmServiceFabricNodeType.cs index 91f26b3b66e0..172f56115714 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/RemoveAzureRmServiceFabricNodeType.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/RemoveAzureRmServiceFabricNodeType.cs @@ -108,14 +108,14 @@ public override void ExecuteCmdlet() { cluster.NodeTypes.Remove(existingNodeType); - /** + /* * * Pulled this out after discussion with Justin. Opened Issue #6246 to track the Null Ptr Exception. cluster.UpgradeDescription.DeltaHealthPolicy = new ClusterUpgradeDeltaHealthPolicy() { MaxPercentDeltaUnhealthyApplications = 0, MaxPercentDeltaUnhealthyNodes = 0, MaxPercentUpgradeDomainDeltaUnhealthyNodes = 0 - };**/ + };*/ var patchRequest = new ClusterUpdateParameters { diff --git a/src/ServiceFabric/ServiceFabric/Commands/UpdateAzServiceFabricVmImage.cs b/src/ServiceFabric/ServiceFabric/Commands/UpdateAzServiceFabricVmImage.cs index e20a810f9213..b9b81382687a 100644 --- a/src/ServiceFabric/ServiceFabric/Commands/UpdateAzServiceFabricVmImage.cs +++ b/src/ServiceFabric/ServiceFabric/Commands/UpdateAzServiceFabricVmImage.cs @@ -38,7 +38,7 @@ public class UpdateAzServiceFabricVmImage : ServiceFabricClusterCmdlet /// /// VmImage sets the Service Fabric runtime package delivery hint for the cluster, which results in dropping the appropriately-mapped package for the VM image OS. /// Accepted values: Windows, Linux, Ubuntu, Ubuntu18_04 - /// Note: Linux & Ubuntu both map to Ubuntu 16.04 + /// Note: Linux & Ubuntu both map to Ubuntu 16.04 /// [Parameter(Mandatory = true, ValueFromPipeline = true, HelpMessage = "VM Image hint for determining SF runtime package delivery: i.e. .cab/.deb")]