Skip to content

Commit 1f81b3c

Browse files
committed
#commit -changes after review comments
1 parent 61bad4c commit 1f81b3c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Websites/Websites/Cmdlets/DeploymentSlots/SetAzureWebAppSlot.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public class SetAzureWebAppSlotCmdlet : WebAppSlotBaseCmdlet
133133
[ValidateSet("AllAllowed", "Disabled", "FtpsOnly")]
134134
public string FtpsState { get; set; }
135135

136-
[Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Custom hostnames associated with web app")]
136+
[Parameter(ParameterSetName = ParameterSet1Name, Mandatory = false, HelpMessage = "Custom hostnames associated with web app slot")]
137137
[ValidateNotNullOrEmpty]
138138
public string[] HostNames { get; set; }
139139

src/Websites/Websites/Utilities/WebsitesClient.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ public void AddCustomHostNames(string resourceGroupName, string location, string
163163
catch (Exception e)
164164
{
165165
WriteWarning("Could not set custom hostname '{0}'. Details: {1}", hostName, e.ToString());
166-
return;
167166
}
168167
}
169168

0 commit comments

Comments
 (0)