Azure / Azure/logicapps

Local Azure Function not working in designer

Open
#1,415 5 comments 0 reactions 2 assignees Claimed by @andrew-eldridge View on GitHub
bug vscode
Dominant language
ABAP
Stars
424
Forks
320
Avg merge
14h 41m
Merged PRs (30d)
1

Description

### Severity

P3 - Medium (Minor functionality affected)

### Describe the Bug with repro steps

Expected behavior:

- When opening a workflow containing a local azure function (after deployment) in the poratl designer, it should render correctly.

Current Behavior:
- Action shows "Failed to retrieve dynamic inputs."

Workflow executes correctly when running both locally on VS Code and after deployment.

### What type of Logic App Is this happening in?

Standard (Portal)

### Are you experiencing a regression?

Yes - don't know the version.

### Which operating system are you using?

Windows

### Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg

Yes

### Workflow JSON

```json
{
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"actions": {
"Call_a_local_function_in_this_logic_app": {
"type": "InvokeFunction",
"inputs": {
"functionName": "common",
"parameters": {
"zipCode": 85396,
"temperatureScale": "Celsiusa"
}
},
"runAfter": {}
},
"Response": {
"type": "Response",
"kind": "http",
"inputs": {
"statusCode": 200,
"body": "@body('Call_a_local_function_in_this_logic_app')"
},
"runAfter": {
"Call_a_local_function_in_this_logic_app": [
"Succeeded"
]
}
}
},
"triggers": {
"When_a_HTTP_request_is_received": {
"type": "Request",
"kind": "Http"
}
},
"contentVersion": "1.0.0.0",
"outputs": {}
},
"kind": "Stateful"
}
```

### Screenshots or Videos

Image

### Environment

- Browser

### Additional context

_No response_

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.