Skip to content

Commit d66dded

Browse files
committed
fix lint errors
1 parent 4f2d969 commit d66dded

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SamplesV2/ContinuousIntegrationAndDelivery/PrePostDeploymentScript.Ver2.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Expliticly stops the triggers form this list if the trigger is in started state even if the trigger payload not changed
2828
example: "testTrigger", "storageEventsTrigger"
2929
The script is not very comprehensive in detecting the trigger changes, so this parameter can be used to stop triggers explicitly if required
30-
.PARAMETER DeleteDeployment
30+
.PARAMETER MaxJsonDepth
3131
Default: 100
3232
The maximum depth the JSON input is allowed to have
3333
#>
@@ -323,7 +323,7 @@ function Compare-TumblingWindowTrigger {
323323

324324
if (($null -ne $propertyChanges) -or ($null -ne $annotationChanges) -or ($null -ne $retryPolicyChanges) -or `
325325
$pipelineRefChanged -or $additionalPropsChanged) {
326-
Write-Host "Change detected in '$($triggerDeployed.Name)' trigger payload - propertyChanges=$($propertyChanges.Length), annotationChanges=$($annotationChanges.Length), retryPolicyChanges=$($retryPolicyChanges.Length), pipelineRefChanged=$pipelineRefChanged, additionalPropsChanged=$additionalPropsChanged"
326+
Write-Host "Change detected in '$($triggerDeployed.Name)' trigger payload - propertyChanges=$($propertyChanges.Length), annotationChanges=$($annotationChanges.Length), retryPolicyChanges=$($retryPolicyChanges.Length), pipelineRefChanged=$pipelineRefChanged, additionalPropsChanged=$additionalPropsChanged"
327327
return $True
328328
}
329329

0 commit comments

Comments
 (0)