Skip to content

Commit

Permalink
Return true from interface walker.
Browse files Browse the repository at this point in the history
Currently resync result was resturned. However that result has nothing to do
with continuation of walk. So return true always to finish all interface walk.

Change-Id: I8a397c8a77a0dfc70a592454df252adcf4c40e98
Closes-bug: 1543478
  • Loading branch information
manishsing committed Feb 9, 2016
1 parent 3f0751b commit e3ac167
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vnsw/agent/oper/interface.cc
Expand Up @@ -311,7 +311,8 @@ bool InterfaceTable::L2VmInterfaceWalk(DBTablePartBase *partition,
VmInterfaceGlobalVrouterData data(vn->bridging(),
vn->layer3_forwarding(),
vn->GetVxLanId());
return vm_intf->Resync(this, &data);
vm_intf->Resync(this, &data);
return true;
}

void InterfaceTable::VmInterfaceWalkDone(DBTableBase *partition) {
Expand Down

0 comments on commit e3ac167

Please sign in to comment.