]> Cypherpunks repositories - gostls13.git/commit
net/http: use default HTTP/2 frame scheduler
authorDamien Neil <dneil@google.com>
Wed, 5 Jun 2024 16:26:29 +0000 (09:26 -0700)
committerGopher Robot <gobot@golang.org>
Wed, 5 Jun 2024 19:28:07 +0000 (19:28 +0000)
commitb658265012e6f7213c12bb653107843475e26837
tree0ba0f768a20a927135c581520b787008b6a02835
parent93bbf719a6d2c911674bbea3535ca1f0684aadc8
net/http: use default HTTP/2 frame scheduler

Use the default frame scheduler (currently round-robin)
rather than overriding the default with the priority scheduler.

The priority scheduler is slow, known buggy, and implements
a deprecated stream prioritization mechanism. The default
changed in x/net about a year ago, but we missed that net/http
is overriding that default.

Fixes #67706

Change-Id: I6d76dd0cc8c55eb5dec5cd7d25a5084877e8e8d9
Reviewed-on: https://go-review.googlesource.com/c/go/+/590796
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Jonathan Amsterdam <jba@google.com>
Auto-Submit: Damien Neil <dneil@google.com>
src/net/http/server.go