Skip to content

Commit

Permalink
Merge branch 'fd4s:series/3.x' into retry-rebalance-in-progress-excep…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
aartigao authored Mar 21, 2024
2 parents d4bfe9a + 3aa8af9 commit 0f32ba1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ val vulcanVersion = "1.10.1"

val munitVersion = "0.7.29"

val scala212 = "2.12.18"
val scala212 = "2.12.19"

val scala213 = "2.13.12"
val scala213 = "2.13.13"

val scala3 = "3.3.1"
val scala3 = "3.3.3"

ThisBuild / tlBaseVersion := "3.3"
ThisBuild / tlBaseVersion := "3.4"

ThisBuild / tlCiReleaseBranches := Seq("series/3.x")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ object HeaderDeserializer {
HeaderDeserializer.instance { bytes =>
@tailrec def go(deserializer: HeaderDeserializer[Either[A, B]]): B =
deserializer.deserialize(bytes) match {
case Right(b) => b
case Left(a) => go(f(a))
case Right(_b) => _b
case Left(_a) => go(f(_a))
}

go(f(a))
Expand Down

0 comments on commit 0f32ba1

Please sign in to comment.