Azure / Azure/azure-functions-powershell-worker

Invoke-DurableActivity -Input takes only objects nested max 1 level

Open
#754 5 comments 1 reaction 0 assignees View on GitHub
breaking change feature:durable functions
Dominant language
C#
Stars
215
Forks
61
Avg merge
21h 4m
Merged PRs (30d)
6

Description

Orchestation function:
```
$t1 = @{a=1;b=2}
$t2 = @{t1=$t1;c=3}
Invoke-DurableActivity -FunctionName 'Hello1' -input $t2
```

Hello1 function:
```
param($name)
"Hello $($name | ConvertTo-Json -Depth 100) !"
```

Output:
```
OUTPUT: Hello {
[2022-02-08T14:30:20.871Z] "t1": "System.Collections.Hashtable",
[2022-02-08T14:30:20.872Z] "c": 3
[2022-02-08T14:30:20.873Z] } !
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.