Development of this package has moved to
connectrpc/grpchealth-go. The new
import path is connectrpc.com/grpchealth
.
To keep Connect well-maintained and responsive to its users' needs over the long term, we're preparing to donate it to a foundation. (More details on that soon!) To cleanly separate Connect from Buf's other code, we're moving development to the connectrpc GitHub organization.
This repository is now frozen: it will continue to function, but won't receive further updates. Apart from its import path, the new package is identical to this one — it contains the same code and releases, so migration usually takes just a few minutes and a handful of shell scripts.
On Linux, or anywhere with GNU sed
:
find . -name "*.go" -exec sed -i 's|github.com/bufbuild/connect-grpchealth-go|connectrpc.com/grpchealth|g' {} \;
go get connectrpc.com/grpchealth@latest
go mod tidy
On Macs, or anywhere with BSD sed
:
find . -name "*.go" -exec sed -i '' 's|github.com/bufbuild/connect-grpchealth-go|connectrpc.com/grpchealth|g' {} \;
go get connectrpc.com/grpchealth@latest
go mod tidy