all: scrub stale gRPC references from comments and docs

Reword comments and docs that still named the removed gRPC stack, rename
the GRPCSortable test interface, and drop the dead gRPC port note from the
dev README.
This commit is contained in:
Kristoffer Dalby
2026-06-18 12:26:58 +00:00
parent 67e0f34527
commit f6aea642d3
14 changed files with 22 additions and 24 deletions
+1 -2
View File
@@ -42,8 +42,7 @@ go tool mts node1 status
| `--port` | 8080 | Headscale listen port |
| `--keep` | false | Keep state directory on exit |
The metrics/debug port is `port + 1010` (default 9090) and the gRPC
port is `port + 42363` (default 50443).
The metrics/debug port is `port + 1010` (default 9090).
## What it does
+1 -1
View File
@@ -96,7 +96,7 @@ func localSocketClient(socketPath string) (*apiv1.Client, error) {
// dialSocketWaiting connects to the local unix socket, retrying while it is
// still absent. headscale removes and rebinds the socket during startup, so a
// CLI command issued right after "systemctl start" can beat the server to it.
// This mirrors the old blocking gRPC dial, which retried until the CLI timeout.
// This mirrors the old blocking dial, which retried until the CLI timeout.
func dialSocketWaiting(ctx context.Context, socketPath string) (net.Conn, error) {
var dialer net.Dialer