0

I am developing a new Logic App in VS Code and created some workflows with Service Bus and Recurrence triggers.

When I run the project, I don't want some of these workflows to run and therefore require selectively disabling them.

puri
  • 1,829
  • 5
  • 23
  • 42

1 Answers1

2

By adding below setting in local.settings.json file, you can disable logicapps. "Workflows.yourworkflowname.FlowState" : "Disabled"

Have created a project in VS code and added two workflows as shown below, enter image description here enter image description here

Added configuration in local.settings.json file as shown below, enter image description here

Once added both recurrence and service bus triggers are not running as shown below, enter image description here

Note: Here recurrence trigger should run for every 10 sec. As it is in disabled state, recurrence trigger is not triggered.

vijaya
  • 1,525
  • 1
  • 2
  • 6