Skip to content
This repository has been archived by the owner on Feb 8, 2021. It is now read-only.

fix incorrect nic name #649

Merged
merged 1 commit into from
Jul 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion daemon/pod/networks.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (inf *Interface) prepare() error {
Ip: inf.spec.Ip,
Mac: inf.spec.Mac,
Gw: inf.spec.Gateway,
TapName: inf.spec.Tap,
TapName: inf.spec.Ifname,
}

return nil
Expand Down
2 changes: 1 addition & 1 deletion types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ message UserInterface {
string ifname = 3;
string mac = 4;
string gateway = 5;
string tap = 6;
string tap = 6;//discarded
}

message UserServiceBackend {
Expand Down