Skip to content

Commit db30d1b

Browse files
andradfFelipe Andrade
andauthored
Use named parameter for appPackageUrl in CreateOrUpdateApplicationTyp… (#25113)
* Use named parameter for appPackageUrl in CreateOrUpdateApplicationTypeVersion * changelog * typo fix --------- Co-authored-by: Felipe Andrade <[email protected]>
1 parent fbf36a6 commit db30d1b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@
129129

130130
#### Az.ServiceFabric 3.3.3
131131
* Updated location of nodeType to use cluster location in stead of resource group location
132+
* Fixed New-AzServiceFabricApplicationTypeVersion cmdlet to send packageUrl
132133

133134
#### Az.Sql 5.0.0
134135
* Added multi-secondary support for 'Get-AzSqlDatabaseFailoverGroup', 'Remove-AzSqlDatabaseFromFailoverGroup' and 'Add-AzSqlDatabaseFromFailoverGroup'

src/ServiceFabric/ServiceFabric/Commands/ProxyResourceCmdletBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ private ApplicationTypeVersionResource CreateOrUpdateApplicationTypeVersion(stri
100100
{
101101
WriteVerbose(string.Format("Creating app type version '{0}':{1}.", applicationTypeName, typeVersion));
102102
ApplicationTypeVersionResource appTypeVersionParams = new ApplicationTypeVersionResource(
103-
packageUrl,
103+
appPackageUrl: packageUrl,
104104
name: this.ClusterName,
105105
type: applicationTypeName,
106106
defaultParameterList: defaultParameters?.Cast<DictionaryEntry>().ToDictionary(d => d.Key as string, d => d.Value as string));

0 commit comments

Comments
 (0)