Azure function activity function being terminad because another function reaches timeout limit
We have an Nodejs Azure functions app (Node 20, programing model v3) that contains multiple functions - some http triggered, some event hub trigerred, and some durable functions with orchestrators and activities.
We noticed that ocassionally one of or activity functions fails with error:
Worker channel is shutting down. Aborting function. Reason: Timeout value of 00:10:00 was exceeded by function: other-eventhub-function Timeout value of 00:10:00 was exceeded by function: other-eventhub function
It seem like our activity function is being killed because some other unrelated function (in the same function app) timed out. Is that possible? Should not the function executions be isolated?