Let's say I have 10 Azure Functions inside one Function App. Each one runs on timer on the 0th second of each minute.
Suppose these functions have blocking non-asynchronous code.
If one function blocks the Node.js process, will the other nine functions continue to run (because they are on different processes) or will they be blocked (because all functions inside a function app run on the same process)?