Add functionality to erase members from networks using file backend in controller microservice

Signed-off-by: Diego Schulz <dschulz@gmail.com>
This commit is contained in:
Diego Schulz 2018-08-02 17:13:55 -04:00
parent 352ec3430f
commit fc6dba0797
No known key found for this signature in database
GPG key ID: E4595B2BA20C0F9E
2 changed files with 14 additions and 1 deletions

View file

@ -1042,6 +1042,7 @@ unsigned int EmbeddedNetworkController::handleControlPlaneHttpDELETE(
json network,member;
_db->get(nwid,network,address,member);
_db->eraseMember(nwid, address);
{
std::lock_guard<std::mutex> l(_memberStatus_l);