Nikita Myazin
Nikita Myazin
Let's say we've got the following test ```scala import zio.test._ object MySpec extends ZIOSpecDefault { override def spec: Spec[Any, Any] = suite("sweet") { test("test") { val exists = Seq(1, 2,...
When reading a request from a super-fast producer, it is possible that `zio.http.netty.AsyncBodyReader` accumulates more data in buffer than can fit into Stream buffer in `zio.http.netty.NettyBody.AsyncBody#asStream`. In that case, the...
See [this MR](https://github.com/zio/zio-intellij/pull/449/files#diff-80ef3666a3e908b0cfa0b56e5129c23982c8f5107ecf5772b69631a8ff603439). In Intellij 2023.2, some of the API became deprecated and might be removed soon. We can use `nowarn` for now to release support for this version, but...
###### Which version and edition of Flyway are you using? 10.11.1 ###### If this is not the latest version, can you reproduce the issue with the latest one as well?...
## Compiler version `3.3.0`, `3.3.1-RC4` ## Minimized code With `-Wunused:all` ```Scala @main def run(): Unit = val dummy = 1 for x
Here's a self-contained test that reproduces the issue ```scala package zio.kafka.consumer import zio._ import zio.kafka.ZIOSpecDefaultSlf4j import zio.kafka.consumer.diagnostics.Diagnostics import zio.kafka.serde.Serde import zio.kafka.testkit.KafkaTestUtils._ import zio.kafka.testkit.{ Kafka, KafkaRandom } import zio.test.TestAspect._ import zio.test._...
I tried ZIO 2.0.0, 2.1.0, 2.1.9 (latest). All of them have the same issue. Here's a test that reproduces the error ```scala import zio._ import zio.test.TestAspect.timeout import zio.test._ import java.util.concurrent.atomic.AtomicBoolean...
**Is your feature request related to a problem? Please describe.** Let's say I have a code that looks like this ```scala final case class MyModel( @fieldName("dakar_rally") f1: Boolean, f2: Boolean...
Here's the minimised example https://scastie.scala-lang.org/AEVvkDVrQ4uYj1llM580og Works fine with Scala 3 (not sure which is more correct) https://scastie.scala-lang.org/PKBCoiqpQsuvUoSKqUoWTQ Scala 3 behaviour seems more correct. If I use provideSomeLayer, it compiles fine...
Fixes #3144 ### Notes Apologies for the messy tests. The newly added test fails when used with ]querySchema], even before the changes introduced in https://github.com/zio/zio-quill/pull/3137. I’m not very familiar with...