'Logic App not picking up all messages from queue

I have a azure service bus queue which has a number of message's within it. And have a logic-app using a manual trigger. I then add a "Get messages from a queue (peek-lock)" action to the app to get the messages from this service bus and set the maximum message count to "170". But when it's triggered it only picks 1 message. Can someone explain why this is. And why it's not picking up 170 messages.

Thanks



Solution 1:[1]

  • You can use the auto-complete trigger which will help you in getting Messages one after the other.

Some triggers, such as the When one or more messages arrive in a queue (auto-complete) trigger, can return one or more messages. When these triggers fire, they return between one and the number of messages that's specified by the trigger's Maximum message count property.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 SaiSakethGuduru-MT