1
votes

I have two functions that are triggered when a message is received on two different queues.

I want that function A is called dequeuing one message per time, while function B with the default MaxConcurrentCalls.

Do I need to create two different WebJobs or do I have the opportunity to change ServiceBusConfiguration in the same WebJob in any way?

1

1 Answers

1
votes

There can only be one ServiceBusConfiguration per WebJob. You're going to have to create two separate WebJobs if you want to vary the MaxConcurrentCalls. There's no way to change that in the ServiceBusTriggerAttribute either.