Amund Murstad
Amund Murstad
Given build.sbt ``` scalaVersion := "2.13.5" addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1") scalacOptions += "-Ywarn-unused" ``` And main ```scala object Main extends App { for { implicit0(i: Int)
Hey. We are having this error pop up in our log every now and then using http4s 0.20.11. ``` Exception in thread "pool-8-thread-1618" java.lang.NullPointerException at org.http4s.blaze.pipeline.MidStage.removeStage(Stages.scala:351) at org.http4s.blaze.pipeline.MidStage.removeStage$(Stages.scala:345) at org.http4s.blazecore.IdleTimeoutStage.removeStage(IdleTimeoutStage.scala:12)...
This works stared as an attempt to fix #2001 but also should now fix #1695 Derivation of systems like the one described below for standard F's like `List`, `Option` and...
Add IOForEachSuite as a way to acquire a new instance of a resource for each test in a suite. Combining this with global makes it possible to do things that...
Running `sbt -mem 8192 test` locally this tests fails. ```scala [info] welcome to sbt 1.5.4 (AdoptOpenJDK Java 1.8.0_282) ..... [info] *************FAILURES************** [info] weaver.framework.test.DogFoodTests [info] - test suite outputs logs for...
I guess its coming through scala-steward at any point. Would be good to get a non-M release of slick-pg also for that :-) https://github.com/slick/slick/discussions/2908
Make PreparedDbProvider AutoCloseable such that the internal background thread started in PrepPipeline can be shut down without needing to shut down the entire JVM. This is useful for usage in...
Ran into this when migrating workplace code to 3.3.0. Tried to minimize the code as much as possible, might be more available. When importing something from an object in the...
The HasNoScope type added in #9604 triggered some unused local warnings when I tried to update zio-http to 3.1.0 I managed to minimize the issue from originally being a part...
This is attempting to fix the issue where you can not add overlapping method for zio-http. If I add two methods `GET /foo/bar/` and `POST /foo/bar` zio-http will currently mark...