I think something like `t.Exception.Handle(_ => true);` is enough, the idea is
to avoid triggering [`UnobservedTaskException
`](https://docs.microsoft.com/en-us/dotnet/api/system.threading.tasks.taskscheduler.unobservedtaskexception)
that can be a pain for some users:
```c#
if (t.IsFaulted)
{
t.Exception.Handle(_ => true);
// Use the original exception here
_callbackByRequestId[msg.RequestId].HandleFailure(t.Exception.InnerException);
// ...
}
```
[ Full content available at: https://github.com/apache/tinkerpop/pull/1016 ]
This message was relayed via gitbox.apache.org for [email protected]