Skip to content
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 dataplane/saiserver/switch.go
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@ func (sw *saiSwitch) CreateSwitch(ctx context.Context, _ *saipb.CreateSwitchRequ
AclTableMaximumPriority: proto.Uint32(10000),
MaxAclActionCount: proto.Uint32(1000),
NumberOfEcmpGroups: proto.Uint32(1024),
PortList: []uint64{cpuPortID},
PortList: []uint64{},
SwitchHardwareInfo: []int32{},
DefaultVlanId: &vlanResp.Oid,
DefaultVirtualRouterId: &vrResp.Oid,
Expand Down
2 changes: 1 addition & 1 deletion dataplane/saiserver/switch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestCreateSwitch(t *testing.T) {
AclTableMaximumPriority: proto.Uint32(10000),
MaxAclActionCount: proto.Uint32(1000),
NumberOfEcmpGroups: proto.Uint32(1024),
PortList: []uint64{2},
PortList: []uint64{},
SwitchHardwareInfo: []int32{},
DefaultStpInstId: proto.Uint64(3),
DefaultVlanId: proto.Uint64(4),
Expand Down
Loading