Henrik Feldt

Results 419 comments of Henrik Feldt

I would much prefer the check if it's a TTY or "is this Windows", or even "is this running on a super-old Windows". But I don't believe in mutilating the...

See https://github.com/haf/expecto/issues/315 for more discussions.

@AnthonyLloyd Perhaps then we start with https://docs.microsoft.com/en-us/dotnet/api/system.operatingsystem?view=netframework-4.8 ? Windows can default to 0 colours, otherwise 256?

I'm not sure what this might be, but reading through the actual evaluation loop: https://github.com/haf/expecto/blob/master/Expecto/Async.fs#L44 the `Async.Sleep 10` is less than a default quanta (80 ms) and is effectively a...

Just because you increase the threadpool doesn't mean you'll get more concurrency, if one thread starves the others and both are using green threads (Async.Sleep etc), since they are then...

It is **not** Logary that hangs; Logary is well tested. The progress pretty printing and locking and Tasks is not my creation. Hence the rewrite in progress. I would like...

You can upload the dump in this thread. I think you exec into your docker container when you've reproduced the problem and run `createdump`; docs https://github.com/dotnet/coreclr/blob/master/Documentation/botr/xplat-minidump-generation.md#configurationpolicy

I'm going to keep this issue open until we've refactored any logic that can trigger this. I have some plans, and the split of files just merged, also helps.

Having the `delay` task complete, but not the `test` task, would leave a whole bunch of orphan tasks hanging; now what's the semantic when Expecto wants to shut down the...

It's worth considering, but in that case having an async implementation that doesn't block the parent async indefinitely, perhaps by polling a variable.