mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 14:51:41 +01:00
exception handling fix
This commit is contained in:
parent
4ea3bb249b
commit
335414ed53
@ -921,9 +921,9 @@ namespace Capnp.Rpc
|
||||
|
||||
void ReleaseResultCaps(PendingAnswer answer)
|
||||
{
|
||||
try
|
||||
answer.Chain(async t =>
|
||||
{
|
||||
answer.Chain(async t =>
|
||||
try
|
||||
{
|
||||
var aorcq = await t;
|
||||
var results = aorcq.Answer;
|
||||
@ -935,11 +935,11 @@ namespace Capnp.Rpc
|
||||
cap?.Release();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
void ProcessFinish(Finish.READER finish)
|
||||
|
Loading…
x
Reference in New Issue
Block a user