Async transformed procedures will not catch Exception anymore.
Bump version to 2.3.7.
This commit is contained in:
parent
fe1b1a6983
commit
56fbdff096
|
@ -1,5 +1,5 @@
|
|||
packageName = "chronos"
|
||||
version = "2.3.6"
|
||||
version = "2.3.7"
|
||||
author = "Status Research & Development GmbH"
|
||||
description = "Chronos"
|
||||
license = "Apache License 2.0 or MIT"
|
||||
|
|
|
@ -52,7 +52,7 @@ template createCb(retFutureSym, iteratorNameSym,
|
|||
{.pop.}
|
||||
except CancelledError:
|
||||
retFutureSym.cancel()
|
||||
except Exception as exc:
|
||||
except CatchableError as exc:
|
||||
futureVarCompletions
|
||||
|
||||
if retFutureSym.finished():
|
||||
|
|
Loading…
Reference in New Issue