-
Notifications
You must be signed in to change notification settings - Fork 96
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Severity
P2 - High (Major functionality broken)
Describe the Bug with repro steps
Shall be seeing all steps being executed but only trigger is being shown in run history
What type of Logic App Is this happening in?
Standard (VSCode)
Are you experiencing a regression?
No response
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": {
"Initialize_variables": {
"type": "InitializeVariable",
"inputs": {
"variables": [
{
"name": "blob_path",
"type": "string",
"value": "@{triggerBody()?['properties']?['blobFullPathWithContainer']}"
}
]
},
"runAfter": {}
},
"Condition": {
"type": "If",
"expression": {
"and": [
{
"endsWith": [
"@variables('blob_path')",
"resources.json"
]
}
]
},
"actions": {
"Terminate": {
"type": "Terminate",
"inputs": {
"runStatus": "Cancelled"
}
}
},
"else": {
"actions": {}
},
"runAfter": {
"Initialize_variables": [
"SUCCEEDED"
]
}
},
"Initialize_variables_1": {
"type": "InitializeVariable",
"inputs": {
"variables": [
{
"name": "subscription",
"type": "string",
"value": "@{split(variables('blob_path'), '/')}"
}
]
},
"runAfter": {
"Condition": [
"SUCCEEDED"
]
}
}
},
"outputs": {},
"triggers": {
"When_a_blob_is_added_or_updated": {
"type": "ServiceProvider",
"inputs": {
"parameters": {
"path": "custodian-results"
},
"serviceProviderConfiguration": {
"connectionName": "AzureBlob",
"operationId": "whenABlobIsAddedOrModified",
"serviceProviderId": "/serviceProviders/AzureBlob"
}
}
}
}
},
"kind": "Stateful"
}Screenshots or Videos
No response
Environment
VS Code 1.107.1
Extension 5.230.15
Additional context
Failed run history

Actual designer
Same code works fine in Web UI

Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working