Suppose I start and wait on a pipeline like this:
#r "nuget: Propulsion, 3.0.0"
open Propulsion
async {
use src : Feed.Core.SourcePipeline =
Unchecked.defaultof<_> // ...
do! src.Await()
}
|> Async.RunSynchronously
How do I make this async crash (and therefore the entire process) when the handle function throws an exception?
Suppose I start and wait on a pipeline like this:
How do I make this
asynccrash (and therefore the entire process) when thehandlefunction throws an exception?