-
Notifications
You must be signed in to change notification settings - Fork 124
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
Update to Akka HTTP 10.2.0 #1087
Conversation
04746fc
to
82fbb09
Compare
@jrudolph we can probably undraft this? |
From my side, yes. I guess it depends on what the plans are for Akka gRPC regarding keeping support for Akka HTTP 10.1.x? |
I think we should update to Akka HTTP 10.2.x and Akka 2.6.x in Akka gRPC 1.1.0, but we haven't set a timeline for that yet. |
Sounds good! So, should this go in an extra branch, then? Or will we branch off for 1.0.x releases if needed? |
Http(sys).bindAndHandleAsync(handler, ConnectHttp.toHost("127.0.0.1", 0), mat).toCompletableFuture.get | ||
Http(sys) | ||
.newServerAt("127.0.0.1", 0) | ||
.bind((req => handler(req)): akka.japi.function.Function[HttpRequest, CompletionStage[HttpResponse]]) |
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 think we can (and should) make this simpler (#1101), but we can do that in a separate PR
Follow up to #937. Currently only as fodder to the validation.
Refs #914