Hi,
I have an Azure Function, with consumption plan, triggered by a Service Bus message, I need that the functions process one or two messages at time.
I limited the instances to one:
And in the host.json of the function I used maxConcurrentCalls at 1.

However, the function keeps firing multiple times for different messages.
What can I do to limit the executions?
Thanks.