Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any way to limit the execution runs in a logic app?

Hi Is there any way to limit the execution runs in a logic app from multiple instances to one at a time?

like image 238
John Avatar asked Nov 27 '25 12:11

John


1 Answers

Take a look at concurrency control as seen in this excellent post: https://toonvanhoutte.wordpress.com/2017/08/29/logic-apps-concurrency-control/

This is the way to implement it, in code view:

"runtimeConfiguration": {
      "concurrency" : {
         "runs": 2
      }
   },
like image 109
zurebe-pieter Avatar answered Nov 30 '25 00:11

zurebe-pieter