Skip to content

Commit

Permalink
Adapt to Akka 2.6 API updates (#1806)
Browse files Browse the repository at this point in the history
  • Loading branch information
2m authored and ennru committed Jul 2, 2019
1 parent f1a941e commit 85f65b1
Show file tree
Hide file tree
Showing 4 changed files with 416 additions and 415 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
name: "Build code style check (fixed with `sbt scalafmtSbt`)"
- env: CMD="++2.11.12 Test/compile"
name: "Compile all tests (with Scala 2.11)"
if: type != cron
- env: CMD="++2.13.0 Test/compile"
name: "Compile all tests (with Scala 2.13)"
- env: CMD="unidoc"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ import scala.util.{Either, Failure, Success}
QueueOfferState.waitForQueueOfferCompleted(nextState, stash = data.stash)

case (_, ConnectionLost(_)) =>
Behavior.same
Behaviors.same
case (_, e) =>
disconnected(data.copy(stash = data.stash :+ e))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -793,7 +793,7 @@ import scala.util.{Failure, Success}
case (_, ReceiveConnectTimeout) =>
throw ClientConnectionFailed
case (_, ConnectionLost) =>
Behavior.same // We know... we are disconnected...
Behaviors.same // We know... we are disconnected...
case (_, PublishReceivedLocally(publish, _))
if !data.publishers.exists(Topics.filter(_, publish.topicName)) =>
Behaviors.same
Expand Down
Loading

0 comments on commit 85f65b1

Please sign in to comment.