Kalin-Rudnicki
Kalin-Rudnicki
hey, sorry been crazy busy lately, @jchyb thanks for picking it up :)
1. `forkDaemon` seems like the wrong call here, all of the connectors in this library are created within a ZLayer, which is a scoped resource 2. Making this class and...
Hello, before I go all the way down the path of making this change, I would like to see if there is an openness to this change. Looking for input...
AHA! I got it to fail! ```scala import zio.* import zio.test.* object ZLayerSpec extends ZIOSpecDefault { final case class Input(value: String) object Input { def layer(value: String): ULayer[Input] = ZLayer.succeed...
The issue is in those `.individualLayer` values. `ZLayer` seems to be doing something incorrectly under the hood where its writing an `Input` to some global place, that a ZLayer somewhere...
Ive dug into this a bunch now... and I think Ive found the root of the issue. ZLayer is doing this whole "sharing by default" thing, example from the docs:...