2

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? .

One sample request timer

cjd82187
  • 3,468
  • 3
  • 15
  • 19
vishnu ns
  • 31
  • 8

1 Answers1

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