LogicAppsUX
LogicAppsUX copied to clipboard
In App Blob Connector "Extract an archive from a blob path to a folder" action is missing required field "Destination Folder Path"
Describe the Bug with repro steps
- The issue occurs in any designer. In Logic App Standard, add a workflow and the In-App Blob Connector action: Extract an archive from a blob path to a folder
- The field destinationFolderPath is optional, but if we don't select it, runtime fails with an error that it's a required value.
- The error is as follows:
{
"code": "ServiceProviderActionFailed",
"message": "The service provider action failed with error code 'ServiceOperationRequiredParameterMissing' and error message 'The required value for parameter 'destinationFolderPath' is missing from operation 'extractArchiveFromBlobPath' for the service provider-based connector named '/serviceProviders/AzureBlob'.'."
}
What type of Logic App Is this happening in?
Standard (Portal)
Are you using new designer or old designer
New Designer
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#",
"actions": {
"Extract_an_archive_from_a_blob_path_to_a_folder": {
"inputs": {
"parameters": {
"destinationContainerName": "test2",
"sourceBlobName": "testlargefile.zip",
"sourceContainerName": "test2"
},
"serviceProviderConfiguration": {
"connectionName": "AzureBlob",
"operationId": "extractArchiveFromBlobPath",
"serviceProviderId": "/serviceProviders/AzureBlob"
}
},
"runAfter": {},
"type": "ServiceProvider"
}
},
"contentVersion": "1.0.0.0",
"outputs": {},
"triggers": {
"When_a_HTTP_request_is_received": {
"kind": "Http",
"type": "Request"
}
}
},
"kind": "Stateful"
}
Screenshots or Videos
Here's a screenshot of the optional parameter:
Runtime error:
Browser
- Edge
Additional context
This happens in both legacy and new designers.
Starting initial investigation
Confirmed that this is a backend issue. There will be a deployment for this in a few weeks. Link to the item for internal tracking here: https://portal.microsofticm.com/imp/v3/incidents/details/518740467/home https://msazure.visualstudio.com/One/_workitems/edit/28633437
Pull request completed, should me deployed in next several weeks