YulawOne

Results 6 comments of YulawOne

I was working on schema support for doobie concept, which I was planning to evolve into some slick like DSL for doobie. Maybe you'll find interesting the idea. https://gist.github.com/YulawOne/736764054a5e9dfda03e7ffb398f8efd

What about add type check, that unit is not ZIO instance? ```scala type

The minimal reproducible unit would be: ```scala Task.evalAsync(throw new NoSuchMethodError("oops")).runSyncUnsafe() ``` This code will never finish

@oleg-py @alexandru The behavior what I expecting for that fatal errors is short-circuiting all computations and error propagation to the parent task (which spawned async process) and perform let-it-crush behavior...

While I was looking for why current future implementation hags, I manage to find this open issue: https://github.com/scala/bug/issues/8938 In 2.13 the issue was solved for InterruptedException, while for VirtualMachineErrors and...

I also though it something specific to way how traits are compiled. I have found workaround in my codebase, but will be great if this issue could be solved in...