We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13ed1ca commit 5943cb4Copy full SHA for 5943cb4
Modules/CippEntrypoints/CippEntrypoints.psm1
@@ -63,15 +63,15 @@ function Receive-CippHttpTrigger {
63
64
function Receive-CippOrchestrationTrigger {
65
param($Context)
66
-
+
67
try {
68
if (Test-Json -Json $Context.Input) {
69
$OrchestratorInput = $Context.Input | ConvertFrom-Json
70
} else {
71
$OrchestratorInput = $Context.Input
72
}
73
Write-Information "Orchestrator started $($OrchestratorInput.OrchestratorName)"
74
+ Write-Warning "Receive-CippOrchestrationTrigger - $($OrchestratorInput.OrchestratorName)"
75
$DurableRetryOptions = @{
76
FirstRetryInterval = (New-TimeSpan -Seconds 5)
77
MaxNumberOfAttempts = if ($OrchestratorInput.MaxAttempts) { $OrchestratorInput.MaxAttempts } else { 1 }
0 commit comments