-
Notifications
You must be signed in to change notification settings - Fork 90
Description
Severity
P1 - Critical (Blocking production)
Describe the Bug with repro steps
In the Designer we are not able to select an Azure function that is contained in the Logic Apps Standard with code .
Everything was working fine 2 weeks ago them after the latest update we are no longer able to select an azure function
We have this error :
Failed to retrieve dynamic inputs. Error details: 'Encountered internal server error. The tracking Id is '5c04ecf0-f815-4227-b4d7-82027414e5bf'.'

If I click on the X to remove the existing function, The dropdown become empty

But when we look in the folder, the lib folder is there with the functions

We are using .net 8
What is weird is, if I create a new Logic Apps Standard Workspace, It works !
So it must be something in our existing project. but it was working before ...
What type of Logic App Is this happening in?
Standard (Local Development)
Are you experiencing a regression?
Was working 2 weeks ago
Which operating system are you using?
Windows
Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg
Yes
Workflow JSON
{
"definition": {
"$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#",
"contentVersion": "1.0.0.0",
"actions": {
"Call_a_local_function_in_this_logic_app": {
"type": "InvokeFunction",
"inputs": {
"functionName": "BuildInterpolateString",
"parameters": {
"input": "html",
"trackedProperties": {
"End-User Legal Name": "John Doe",
"Contract Addendum Identifier": "ADD-12345",
"Contract Addendum Expiry Date": "2023-12-31"
}
}
},
"runAfter": {}
}
},
"outputs": {},
"triggers": {
"When_a_HTTP_request_is_received": {
"type": "Request",
"kind": "Http",
"inputs": {
"method": "POST",
"schema": {
"type": "object",
"properties": {
"data": {
"type": "string"
}
}
}
}
}
}
},
"kind": "Stateful"
}
Screenshots or Videos
No response
Environment
Visual STudio Code

Additional context
No response