Fix task update polling

Fix task update polling after a change while linting broke it :/
This commit is contained in:
Andrew 2022-03-04 20:41:27 -05:00
parent cd33383cd2
commit 1bf40ffda9
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,8 @@ class helpers_management:
#************************************************************************************************ #************************************************************************************************
@staticmethod @staticmethod
def get_latest_hosts_stats(): def get_latest_hosts_stats():
query = Host_Stats.select().order_by(Host_Stats).get() #pylint: disable=no-member
query = Host_Stats.select().order_by(Host_Stats.id.desc()).get()
return model_to_dict(query) return model_to_dict(query)
#************************************************************************************************ #************************************************************************************************

View File

@ -452,7 +452,6 @@ class TasksManager:
'mem_percent': host_stats.get('mem_percent'), 'mem_percent': host_stats.get('mem_percent'),
'mem_usage': host_stats.get('mem_usage') 'mem_usage': host_stats.get('mem_usage')
}) })
time.sleep(2)
def log_watcher(self): def log_watcher(self):
self.controller.servers.check_for_old_logs() self.controller.servers.check_for_old_logs()