-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Create hyper::Service trait #2853
Comments
Hey guys, decided to give this a go next. Some questions:
If you don't like the extended scope, we can merge any subset of commits. I tried to separate it into increments of changes. There is also a bunch of |
Hey @seanmonstar, I see you being active in other issues that I commented. |
Sorry, it was still in my inbox waiting for my review, been trying to triage between my deadlines XD
Unknown. Perhaps not root level to start. I dunno... I mean, the reason to have it inside hyper directly is part of the
I didn't know we even had this dependency? While I do think the community at-large should use |
Extending the scope – music to my ears. I'll get back when |
I think I got it. Had to work around the One test might fail when you trigger the pipeline, |
This removes the dependency on `tower-service`, and simplifies the `Service` trait to be used by hyper's server connections. Closes #2853 BREAKING CHANGE: Change any manual `impl tower::Service` to implement `hyper::service::Service` instead. The `poll_ready` method has been removed.
Make a simplified
Service
trait that is only thecall
method. Update the serverConnection
to use it instead of tower-service.The text was updated successfully, but these errors were encountered: