I am using a Sql Connector as a trigger in my Logic App
- Action 1 - Trigger every two minutes with data available query as
select count(*) from Foo where status = "new"
and poll data query asselect id, name, status from foo where status = "new"
; - Action 2 - processes data;
- Action 3 - uses another sql connector to update the foo table status to "complete";
As you can see from the run image attached, several threads are kicked off for the one entry that is in my db. Is this normal, a defect or just the wrong way to flow the app?