I need a straightforward way to show a failure reason on the client side.
AFAIK now there are a couple of ways to do it:
- Dig into the history
- try/except over
await handle.result and then dig into the exception.
I wonder why there is no method on the handle to get current (not static) details and current summary?
I don want to do all the digging on the client side, i just want to put readable reason to current_* attributes and read them from the client.
Maybe some shortcut method to get latest event can work too.
What do you think?
Thank you!