pvgoran
pvgoran
HttpClientMonixBackend won't work for me, because I use Java 1.8. As a work-around I'll try using ZIO backends.
@adamw ZIO backends work fine for now, and ZIO itself looks like a sound system.
Why was this closed? The problem is quite real and prevents use of this backend in certain legitimate scenarios. Judging from the discussion, the problem seems to happen because STTP...
One of consequences of the current state of affairs is that if I one of child fibers of `foreachPar` dies, the cause of the composed effect will `squash` into a...
Curiously, this problem does not occur with `raceFirst`: if one of the racing effects dies, the composed effect does not contain a `Cause.Interrupt`, even though an interruption did occur as...
I just run into an issue with PostgreSQL, which is supposedly related to this. Long story short: I have the `sequences` table, and ScalikeJDBC's generated "select" query for this table...
After investigation, it looks like the "impl"-type dependencies are not needed. I replaced usages of `org.netbeans.modules.extexecution.base.ExternalProcessBuilder` with `org.netbeans.api.extexecution.ExternalProcessBuilder` in these two modules, after that the "impl"-type dependencies could be safely...
Ok, here is the patch. (I had to rename to `.txt` before GitHub allowed it.) [remove-impl-module-dependencies.patch.txt](https://github.com/dcaoyuan/nbscala/files/636904/remove-impl-module-dependencies.patch.txt)
Gentoo aggressively pushes 17.1 profiles for some time now, and when I finally did the switch, I encountered this problem. Symlinking `/usr/lib64/palemoon/browser/plugins` to `/usr/lib64/nsbrowser/plugins` helped, but it would be good...
I created a separate ebuild with the following lines in src_install to deal with the problem: ``` if [[ "$(get_libdir)" != "lib" ]]; then dosym /usr/"$(get_libdir)"/nsbrowser/plugins /usr/"$(get_libdir)"/palemoon/browser/plugins fi ``` Maybe...