-
Notifications
You must be signed in to change notification settings - Fork 387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Drop Akka 2.5 dependency #1209
Drop Akka 2.5 dependency #1209
Conversation
40614e1
to
ccf1dda
Compare
ccf1dda
to
ac2f03e
Compare
ac2f03e
to
e17c7da
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Other than the Travis setup this looks good to me.
Let's think about other Akka 2.6 things we could/should leverage.
@@ -25,16 +26,17 @@ public void discoverySetup() throws Exception { | |||
ConfigFactory.parseString(ConsumerSettingsSpec$.MODULE$.DiscoveryConfigSection()) | |||
.withFallback(ConfigFactory.load()) | |||
.resolve(); | |||
ActorSystem system = ActorSystem.create("ConsumerSettingsTest", config); | |||
ClassicActorSystemProvider system = ActorSystem.create("ConsumerSettingsTest", config); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we should remove the deprecation on the DiscoverySupport
instead. Users normally can't avoid that that method is chosen with a classic actor system.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IIUC I'm suppressing the deprecation warning instead.
tests/src/test/scala/akka/kafka/scaladsl/TransactionsSpec.scala
Outdated
Show resolved
Hide resolved
fix travis step review feedback
Fixes #1113