When writing an Azure Function in compiled C#/F#, what's the cleanest way to signal to the Function runtime that the function failed?
I know that throwing an exception will result in a failure, but I'd prefer to handle those internally. I've also noticed that when when the function writes to log.Error
the execution is still considered successful.
Is throwing an exception the only way to signal a failure, or is there a better practice?
Yes, throwing an exception is how you signal a failure. Even if you log errors inside of your function, the function host doesn't take that into consideration when determining success/failure.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With