I have a function app (a service bus trigger function and it is a durable function containing a starter, orchestrator, activity functions) with a production and a staging slot.
I do not want the functions in the staging slot to be tripped by the queue elements in the service bus. I have disabled the starter function in the staging slot by adding a setting AzureWebJobs.StarterFunction.Disabled = 1.
I still see all other functions in the staging slot running. Should I add the setting to disable all the functions in the staging slot? Is there a different approach to make sure that the functions in staging don't run?