Share via

Logic app Service bus connector default Receive mode ?

Amar-Azure-Practice 661 Reputation points
2021-09-25T19:23:32.783+00:00

Hi

In logic app service bus trigger, what is the default message received mode read type is that PeekLock or ReceiveandDelete mode?

Is there any way we can change this in the logic app service bus connector.

Azure Service Bus
Azure Service Bus

An Azure service that provides cloud messaging as a service and hybrid integration.

Azure Logic Apps
Azure Logic Apps

An Azure service that automates the access and use of data across clouds without writing code.

0 comments No comments

Answer accepted by question author

MayankBargali-MSFT 71,016 Reputation points Moderator
2021-09-27T06:42:50.9+00:00

@Amar-Azure-Practice The connector internal handles the mode of reading the messages from service bus entity depending what action/trigger you are using. The configuration is not exposed as different trigger/action uses different mode.

If you are using trigger when a message is received in a queue (peek-lock) then internally it will peek and lock the message at the service bus end and you need to call complete the message in a queue so the message is delete.

When you are using when a message is received in a queue (auto-complete) trigger then internally it will call auto complete on the message and the message will be deleted once the trigger is executed. You can refer to Service Bus connector document for more details on the trigger and action avaiable.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.