slight tweak to the get_hosts method

This commit is contained in:
Damien Churchill 2009-03-16 15:51:51 +00:00
parent 87b789e3a1
commit 467afb5d63

View File

@ -367,7 +367,7 @@ class WebApi(JSONComponent):
if all(map(lambda x: x[3] is not None, hosts.values())): if all(map(lambda x: x[3] is not None, hosts.values())):
main_deferred.callback(hosts.values()) main_deferred.callback(hosts.values())
def on_connect(result, c, host_id): def on_connect(connected, c, host_id):
def on_info(info, c): def on_info(info, c):
hosts[host_id][3] = _("Online") hosts[host_id][3] = _("Online")
hosts[host_id][4] = info hosts[host_id][4] = info
@ -378,7 +378,7 @@ class WebApi(JSONComponent):
hosts[host_id][3] = _("Offline") hosts[host_id][3] = _("Offline")
run_check() run_check()
if not c.connected(): if not connected:
hosts[host_id][3] = _("Offline") hosts[host_id][3] = _("Offline")
run_check() run_check()
return return