In my angular 5 app the requests are getting stalled by 17 secs in chrome. And the same is working fine in Firefox. I searched some doc and found that chrome allows only 6 connection simultaneously. Is there any way by which I can solve this. Did angular has anything to do with this? .
Asked
Active
Viewed 1,002 times
1 Answers
1
when you use Https it have the limitation that you can only send max 6 concurrent request on Chrome. so in order to send more use Http/2. follow this link
Hope it will help.

Sunny Goel
- 1,982
- 2
- 15
- 21
-
Thank you so much for the reply. I will check this and reply here. – vishnu ns Jul 15 '20 at 11:05
-
I have checked this but in my case I am using windows authentication so what I found is I cant use Http/2 – vishnu ns Aug 28 '20 at 07:45