rrd: Only decrease client count for legacy nodes.

This commit is contained in:
Daniel Ehlers 2014-01-30 22:08:40 +01:00
parent d9451e2ea7
commit 4c4e8d846b

3
rrd.py
View file

@ -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():