Dmitry

Results 97 comments of Dmitry

@tim-smart I think i'm done, could you review, please?

@tim-smart a strange thing is happening. https://effect.website/play#a7005d4f9f10 The program is finished, but the process is hanging. I didn't get the reason yet, will investigate, but it looks like a deep...

I improved the docs, refactored the `takeWhile` predicate function body to be more readable. It stucks on the docs generation now, and the reason is this behaviour that looks like...

No, it's not exiting. I am checking it locally on my machine.

I'm sorry, i provided a wrong code. This one is not exiting https://effect.website/play#2bd210998527

It does exiting as expected if run it with `NodeRuntime.runMain`, but doesn't with `Effect.runPromise`

`NodeRuntime` waits until program is finished and forcefully kills the process. `Effect.runPromise` just runs the program. I assume the issue is somewhere here https://github.com/Effect-TS/effect/blob/main/packages/effect/src/internal/core.ts#L1532-L1537

Yes, the issue is here. I modified the `node_modules/effect/dist/esm/internal/core.js` like this ```js export const never = /*#__PURE__*/async(() => { const interval = setInterval(() => void 0, 2 ** 31 -...

I modified the code like this, and it works now. Looks like a dirty workaround, not sure if it's a good idea to do it. What do you think about...

I think we need @mikearnaldi here, because the bug looks serious