-
Notifications
You must be signed in to change notification settings - Fork 26.5k
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: server stream supports requests without parameters #15026
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## 3.3 #15026 +/- ##
============================================
+ Coverage 60.76% 60.78% +0.01%
+ Complexity 10867 10865 -2
============================================
Files 1882 1882
Lines 85990 85997 +7
Branches 12878 12881 +3
============================================
+ Hits 52251 52271 +20
+ Misses 28297 28286 -11
+ Partials 5442 5440 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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
What is the purpose of the change?
在http1.1上服务端做推送时可能不需要参数,而是通过url来区分业务,比如一些广播频道
In HTTP/1.1, when the server performs push, it may not require parameters but rather differentiate the business logic through the URL, such as with broadcast channels.
Checklist