Skip to content

Commit

Permalink
Fix task (#7522)
Browse files Browse the repository at this point in the history
  • Loading branch information
bishal-pdMSFT authored Jun 20, 2018
1 parent b5d8a96 commit 0c2f651
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Tasks/ServiceFabricDeployV1/ServiceFabricSDK/Utilities.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ function Get-ServiceFabricApplicationAction
[string]
$ApplicationTypeName,

[HashTable]
[string]
$ApplicationName
)

Expand All @@ -229,7 +229,7 @@ function Get-ServiceFabricApplicationAction
}

$global:operationId = $SF_Operations.GetApplication
return Get-ServiceFabricApplication $getApplicationParams
return Get-ServiceFabricApplication @getApplicationParams
}

function Get-ServiceFabricApplicationTypeAction
Expand All @@ -240,7 +240,7 @@ function Get-ServiceFabricApplicationTypeAction
)

$global:operationId = $SF_Operations.GetApplicationType
return Get-ServiceFabricApplication -ApplicationTypeName $ApplicationTypeName
return Get-ServiceFabricApplicationType -ApplicationTypeName $ApplicationTypeName
}

function Get-ServiceFabricApplicationUpgradeAction
Expand All @@ -251,5 +251,5 @@ function Get-ServiceFabricApplicationUpgradeAction
)

$global:operationId = $SF_Operations.GetApplicationUpgradeStatus
return Get-ServiceFabricApplication -ApplicationName $ApplicationName
return Get-ServiceFabricApplicationUpgrade -ApplicationName $ApplicationName
}
2 changes: 1 addition & 1 deletion Tasks/ServiceFabricDeployV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 1,
"Minor": 7,
"Patch": 12
"Patch": 13
},
"demands": [
"Cmd"
Expand Down
2 changes: 1 addition & 1 deletion Tasks/ServiceFabricDeployV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"version": {
"Major": 1,
"Minor": 7,
"Patch": 12
"Patch": 13
},
"demands": [
"Cmd"
Expand Down

0 comments on commit 0c2f651

Please sign in to comment.