Skip to content

Commit

Permalink
chore: bump to akka 2.9.0-M2
Browse files Browse the repository at this point in the history
  • Loading branch information
aludwiko committed Oct 2, 2023
1 parent b745c97 commit 200f40d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ import org.slf4j.Logger
// switching to backtracking
val fromOffset =
if (state.latestBacktracking == TimestampOffset.Zero)
TimestampOffset.Zero.copy(timestamp = state.latest.timestamp.minus(firstBacktrackingQueryWindow))
TimestampOffset(timestamp = state.latest.timestamp.minus(firstBacktrackingQueryWindow), Map.empty)
else
state.latestBacktracking

Expand Down
2 changes: 1 addition & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ object Dependencies {
val Scala3 = "3.3.1"
val Scala2Versions = Seq(Scala213, Scala212)
val ScalaVersions = Dependencies.Scala2Versions :+ Dependencies.Scala3
val AkkaVersion = System.getProperty("override.akka.version", "2.9.0-M1")
val AkkaVersion = System.getProperty("override.akka.version", "2.9.0-M2")
val AkkaVersionInDocs = AkkaVersion.take(3)
val AkkaPersistenceJdbcVersion = "5.2.0" // only in migration tool tests
val AkkaProjectionVersionInDocs = "current"
Expand Down

0 comments on commit 200f40d

Please sign in to comment.