Skip to content

Commit

Permalink
Merge pull request #1839 from manuelbuil/flannelWin
Browse files Browse the repository at this point in the history
Add the VNI to the error message in Windows
  • Loading branch information
manuelbuil committed Dec 19, 2023
2 parents 207d5cd + a3631b8 commit 766596d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/backend/vxlan/vxlan_network_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (nw *network) handleSubnetEvents(batch []lease.Event) {
}

if vxlanAttrs.VNI < 4096 {
log.Error("VNI is required to greater than or equal to 4096 on Windows.")
log.Errorf("VNI is %d but it is required to be greater than or equal to 4096 on Windows.", vxlanAttrs.VNI)
continue
}

Expand Down

0 comments on commit 766596d

Please sign in to comment.