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"
|
packageName = "chronos"
|
||||||
version = "2.3.6"
|
version = "2.3.7"
|
||||||
author = "Status Research & Development GmbH"
|
author = "Status Research & Development GmbH"
|
||||||
description = "Chronos"
|
description = "Chronos"
|
||||||
license = "Apache License 2.0 or MIT"
|
license = "Apache License 2.0 or MIT"
|
||||||
|
|
|
@ -52,7 +52,7 @@ template createCb(retFutureSym, iteratorNameSym,
|
||||||
{.pop.}
|
{.pop.}
|
||||||
except CancelledError:
|
except CancelledError:
|
||||||
retFutureSym.cancel()
|
retFutureSym.cancel()
|
||||||
except Exception as exc:
|
except CatchableError as exc:
|
||||||
futureVarCompletions
|
futureVarCompletions
|
||||||
|
|
||||||
if retFutureSym.finished():
|
if retFutureSym.finished():
|
||||||
|
|
Loading…
Reference in New Issue