-
Notifications
You must be signed in to change notification settings - Fork 209
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
feat: implement route interface in http protocol #803
Conversation
# Conflicts: # server/src/handlers/error.rs # server/src/http.rs # server/src/server.rs
Codecov Report
@@ Coverage Diff @@
## main #803 +/- ##
==========================================
- Coverage 68.18% 68.07% -0.11%
==========================================
Files 295 296 +1
Lines 46880 46893 +13
==========================================
- Hits 31963 31924 -39
- Misses 14917 14969 +52
... and 6 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com>
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.
LGTM
6d5ac64
to
472d54a
Compare
* http route * debug * add http route interface * fmt * http router * fmt * Update server/src/context.rs Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com> * optimize input/output * chore * remove log * clippy --------- Co-authored-by: WEI Xikai <ShiKaiWi@users.noreply.github.com>
Which issue does this PR close?
Closes #146
Rationale for this change
See #146
What changes are included in this PR?
Add route interface in http protocol.
Are there any user-facing changes?
User can get table route information by http request, not only by Grpc.
How does this change test