Merge pull request #1593

cbcdf8ad Honor depth in get_peerlist_head method (Miguel Herranz)
This commit is contained in:
Riccardo Spagni 2017-01-20 20:59:09 -05:00
commit 3db3a6ee1a
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -285,9 +285,11 @@ namespace nodetool
{
if(!vl.last_seen)
continue;
bs_head.push_back(vl);
if(cnt++ > depth)
if(cnt++ >= depth)
break;
bs_head.push_back(vl);
}
return true;
}