Skip to content

Commit

Permalink
Merge pull request #867 from http4s/update/series/0.23/sbt-http4s-org…
Browse files Browse the repository at this point in the history
…-0.17.0

Update sbt-http4s-org to 0.17.0 in series/0.23
  • Loading branch information
danicheg authored Apr 26, 2024
2 parents 3bd449c + cd75581 commit f0ff468
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ private[http2] class MockStreamManager() extends StreamManager {

override def get(streamId: Int): Option[StreamState] = None

override def drain(lastHandledOutboundStream: Int, reason: Http2SessionException): Future[Unit] =
???
override def drain(
lastHandledOutboundStream: Int,
reason: Http2SessionException
): Future[Unit] = ???

override def rstStream(cause: Http2StreamException): MaybeError = Continue

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ private[http2] class MockTools(isClient: Boolean) extends SessionCore {
override def invokeDrain(gracePeriod: Duration): Unit =
drainGracePeriod = Some(gracePeriod)

override def invokeGoAway(lastHandledOutboundStream: Int, reason: Http2SessionException): Unit =
???
override def invokeGoAway(
lastHandledOutboundStream: Int,
reason: Http2SessionException
): Unit = ???

override def invokeShutdownWithError(ex: Option[Throwable], phase: String): Unit = ???
}
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.8.0")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")
addSbtPlugin("org.http4s" %% "sbt-http4s-org" % "0.16.3")
addSbtPlugin("org.http4s" %% "sbt-http4s-org" % "0.17.0")

0 comments on commit f0ff468

Please sign in to comment.