Skip to content

Commit 78e495c

Browse files
kzysaustinvazquez
authored andcommitted
Use main instead of master
firecracker-containerd and Firecracker no longer use `master` branch since 435ade4. The links and references must be updated. Signed-off-by: Kazuyoshi Kato <[email protected]>
1 parent 47debd3 commit 78e495c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/vm/vsock.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ func vsockConnectMsg(port uint32) string {
185185
// The message a host-side connection must write after connecting to a firecracker
186186
// vsock unix socket in order to establish a connection with a guest-side listener
187187
// at the provided port number. This is specified in Firecracker documentation:
188-
// https://github.com/firecracker-microvm/firecracker/blob/master/docs/vsock.md#host-initiated-connections
188+
// https://github.com/firecracker-microvm/firecracker/blob/main/docs/vsock.md#host-initiated-connections
189189
return fmt.Sprintf("CONNECT %d\n", port)
190190
}
191191

@@ -223,7 +223,7 @@ func tryConnect(logger *logrus.Entry, udsPath string, port uint32) (net.Conn, er
223223
}
224224

225225
// The line would be "OK <assigned_hostside_port>\n", but we don't use the hostside port here.
226-
// https://github.com/firecracker-microvm/firecracker/blob/master/docs/vsock.md#host-initiated-connections
226+
// https://github.com/firecracker-microvm/firecracker/blob/main/docs/vsock.md#host-initiated-connections
227227
if !strings.HasPrefix(line, "OK ") {
228228
return nil, vsockAckError{
229229
cause: errors.Errorf(`expected to read "OK <port>", but instead read %q`, line),

0 commit comments

Comments
 (0)