-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
removing deprecated http closenotifier function #6886
removing deprecated http closenotifier function #6886
Conversation
Hello, as I mentioned in the issue, we currently cannot take this change. If this change was taken, we would need to do it cross language. Hence, can you please file an issue at the link I listed in the issue you brought up. Thank you! |
I think this was the wrong PR? @zasweq ? |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #6886 +/- ##
==========================================
+ Coverage 83.65% 83.78% +0.13%
==========================================
Files 286 286
Lines 30756 30756
==========================================
+ Hits 25730 25770 +40
+ Misses 3963 3936 -27
+ Partials 1063 1050 -13 |
Yeah...it looks like nothing ever read from the notifier channel? SGTM as long as all the tests pass! In the meantime, there is a lint error (just need to run https://github.com/grpc/grpc-go/actions/runs/7282068214/job/19843764206?pr=6886#step:7:259 |
@dfawley , yes, thats exactly what I meant, notifier channel seems not to be required, thank you for time and understanding with opening issue so we can proceed |
Oh whoops sorry wrong PR |
+@easwars for a second pass |
Regarding this little issue with deprecated function http.CloseNotify,
#6782
I have decided to add just small pr for http.CloseNotify deprecated
In this pull request, I have just removed the implementation, tests are going well,
my other approach was this:
to add and update
onlyCloseNotifier
interface, by doing this:then to update whole
testHandlerResponseWriter
with corresponding context.Context methods, like these:But I suppose non of this is required ?
RELEASE NOTES: none