Skip to content

Commit

Permalink
Fixing Docker create mgmt network MTU output (#1911)
Browse files Browse the repository at this point in the history
  • Loading branch information
steiler committed Feb 23, 2024
1 parent f11d4a9 commit 2d58102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func (d *DockerRuntime) CreateNet(ctx context.Context) (err error) {
func (d *DockerRuntime) createMgmtBridge(nctx context.Context, bridgeName string) (string, error) {
var err error
log.Debugf("Network %q does not exist", d.mgmt.Network)
log.Infof("Creating docker network: Name=%q, IPv4Subnet=%q, IPv6Subnet=%q, MTU=%q",
log.Infof("Creating docker network: Name=%q, IPv4Subnet=%q, IPv6Subnet=%q, MTU=%d",
d.mgmt.Network, d.mgmt.IPv4Subnet, d.mgmt.IPv6Subnet, d.mgmt.MTU)

enableIPv6 := false
Expand Down

0 comments on commit 2d58102

Please sign in to comment.