Skip to content

Commit

Permalink
Merge "Return true from interface walker." into R2.21.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Feb 9, 2016
2 parents bb0b215 + bb609de commit 82d1948
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 82d1948

Please sign in to comment.