rrd: Only decrease client count for legacy nodes.
This commit is contained in:
parent
d9451e2ea7
commit
4c4e8d846b
1 changed files with 2 additions and 1 deletions
3
rrd.py
3
rrd.py
|
@ -118,7 +118,8 @@ class rrd:
|
|||
if not node.flags['client']:
|
||||
nodes[node.id] = node
|
||||
node.clients = 0;
|
||||
clientCount -= 1 # XXX: might not be needed with gluon/alfred
|
||||
if 'legacy' in node.flags and node.flags['legacy']:
|
||||
clientCount -= 1
|
||||
else:
|
||||
clientCount += 1
|
||||
for link in db.get_links():
|
||||
|
|
Loading…
Add table
Reference in a new issue