Skip to content

Commit 5bc11f1

Browse files
committed
force orchestrator id to be string
1 parent fbe5f33 commit 5bc11f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/CippEntrypoints/CippEntrypoints.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ function Receive-CIPPTimerTrigger {
291291

292292
$Results = Invoke-Command -ScriptBlock { & $Function.Command @Parameters }
293293
if ($Results -match '^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$') {
294-
$FunctionStatus.OrchestratorId = $Results
294+
$FunctionStatus.OrchestratorId = $Results -join ','
295295
$Status = 'Started'
296296
} else {
297297
$Status = 'Completed'

0 commit comments

Comments
 (0)