Reputation: 8035
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?
Upvotes: 4
Views: 1323
Reputation: 2802
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.
Upvotes: 6