Alan Potter
Alan Potter
Hi @hectorhdzg. Thanks for this. I looked at `isAppCrashing`, but it doesn't really match my use case. Setting it to `true` causes `isNodeCrashing` to be `true` here: https://github.com/microsoft/ApplicationInsights-node.js/blob/c13a78d900be17f000992c2a2fbfb162062c5271/Library/Channel.ts#L89 So, by...
Ok, thanks very much. I've got a workaround in place that's good enough for now. We'll look at upgrading when the new release comes out.
@dornfeder It's not great. I'm basically doing: ```javascript TelemetryClient.flush(); setTimeout{() => { process.exit(code); }, 1000); ``` which will get me the events most of the time.
I also wanted this, and went to look at what it would take to implement it. Isn't it mostly done? Nearly all the `assert_*` functions use constructs like ``` function...
Ah, ok, I see. Thanks.