LogicAppsUX icon indicating copy to clipboard operation
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"

Open kaly-d opened this issue 1 year ago • 3 comments
trafficstars

Describe the Bug with repro steps

  1. 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
  2. The field destinationFolderPath is optional, but if we don't select it, runtime fails with an error that it's a required value.
  3. 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:

image

Runtime error:

image

Browser

  • Edge

Additional context

This happens in both legacy and new designers.

kaly-d avatar Jun 28 '24 17:06 kaly-d

Starting initial investigation

DanielleCogs avatar Jul 01 '24 21:07 DanielleCogs

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

DanielleCogs avatar Jul 05 '24 17:07 DanielleCogs

Pull request completed, should me deployed in next several weeks

DanielleCogs avatar Jul 23 '24 16:07 DanielleCogs