How can I manually fail an Azure Function?
Description: I have an Azure Function on a timer trigger that performs multiple steps. Each step has its own try/catch block to swallow any exceptions and log them. These steps are not dependent on each other, therefore I do not want an exception to stop the entire function. try { await StepOneAsync(); } catch (Exception… Read More How can I manually fail an Azure Function?