]> Cypherpunks repositories - gostls13.git/commit
net/http: fix for recent go.mod update
authorRuss Cox <rsc@golang.org>
Mon, 2 May 2022 15:12:25 +0000 (11:12 -0400)
committerGopher Robot <gobot@golang.org>
Mon, 2 May 2022 15:27:00 +0000 (15:27 +0000)
commit06338941ea0e3d654805b7323761f3c841cc8d58
treec64094ca15208e9ecf4f1d3fbe254e2c2e6a1a4d
parent349cc83389f71c459b7820b0deecdf81221ba46c
net/http: fix for recent go.mod update

cmd/internal/moddeps was failing.
Ran the commands it suggested:

% go mod tidy                               # to remove extraneous dependencies
% go mod vendor                             # to vendor dependencies
% go generate -run=bundle std               # to regenerate bundled packages
% go generate syscall internal/syscall/...  # to regenerate syscall packages

cmd/internal/moddeps is happy now.

Change-Id: I4ee212cdc323f62a6cdcfdddb6813397b23d89e5
Reviewed-on: https://go-review.googlesource.com/c/go/+/403454
Run-TryBot: Russ Cox <rsc@golang.org>
Auto-Submit: Russ Cox <rsc@golang.org>
Reviewed-by: Than McIntosh <thanm@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
src/net/http/h2_bundle.go