Uh oh!
There was an error while loading. Please reload this page.
removed argument requestId from loopbackserver.cs - #58678
Conversation
ManickaP
commented
Sep 6, 2021
Thanks for the contribution! |
AnudeepGunukula
commented
Sep 6, 2021
i will remove the argument requestId in the abstract methods in GenericLoopbackServer.cs |
karelz
left a comment
There was a problem hiding this comment.
All inherited classes need similar changes.
Uh oh!
There was an error while loading. Please reload this page.
…er.cs Co-authored-by: Karel Zikmund <karelz@microsoft.com>
ok @karelz . i will make similar changes in all inherited classes and then test locally and will make a commit soon |
karelz
commented
Sep 14, 2021
@AnudeepGunukula just curious if you were able to make further progress, or if you got stuck somewhere ... |
Hi @karelz i am working on it and will make commit as soon as possible |
AnudeepGunukula
commented
Sep 20, 2021
hi @karelz . i had removed requestId argument from all the Inherited classes |
AnudeepGunukula
commented
Sep 27, 2021
Hi @ManickaP |
ManickaP
commented
Sep 29, 2021
Hi @AnudeepGunukula, I see in the checks that there are failing tests due to the change: They need to be resolved as well. You can run the tests for System.Net.Http locally like this: https://github.com/dotnet/runtime/blob/main/docs/workflow/testing/libraries/testing.md#running-tests-for-a-single-library From the quick look, it seems like the change in HttpClientHandlerTest.Http2.cs is not correct. Since the test is not reading request via In this particular case, you need to somehow pass the stream id to the loopback connection. |
ManickaP
commented
Oct 19, 2021
Hi @AnudeepGunukula, |
AnudeepGunukula
commented
Oct 24, 2021
Hi @ManickaP |
AnudeepGunukula
commented
Nov 4, 2021
Hi @ManickaP . I had created new function in http2 but still some checks are failing. |
karelz
commented
Nov 4, 2021
@AnudeepGunukula did you look at all the failed legs? From a cursory look at couple of failed legs are failing on test Did you try to reproduce the failure on your machine and debug it? |
Uh oh!
There was an error while loading. Please reload this page.
greenEkatherine
left a comment
There was a problem hiding this comment.
please try to revert the line where _lastStreamId was passed before
…tion.cs Co-authored-by: Katya Sokolova <esokolov@microsoft.com>
karelz
left a comment
There was a problem hiding this comment.
Looks like we are almost done with the change. I added 2 nits with extra space and 1 deduplication of code.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
…tion.cs Co-authored-by: Karel Zikmund <karelz@microsoft.com>
…tion.cs Co-authored-by: Karel Zikmund <karelz@microsoft.com>
…tion.cs Co-authored-by: Karel Zikmund <karelz@microsoft.com>
AnudeepGunukula
commented
Nov 23, 2021
Hi , i had commited the suggested changes . |
karelz
commented
Nov 23, 2021
@AnudeepGunukula I think you missed my comment to remove 'async' from the method: #58678 (comment) @greenEkatherine can you please help here to move this further? Thank you! |
greenEkatherine
commented
Nov 23, 2021
@AnudeepGunukula thank you for your contribution! Kindly let me take over this PR and add the necessary change |
karelz
commented
Nov 23, 2021
Thanks @AnudeepGunukula for your contribution! |
Closes#58239
i had removed the requestId arguement from the loopbackserver.cs
i removed at the places where argument is not necessary.
This pr will solve the above issue.