1
0
Fork 0

530457 - [abrt] crash detected in tuned-0.2.5-0.1.fc12

Signed-off-by: Marcela Mašláňová <mmaslano@redhat.com>
This commit is contained in:
Jan Vcelak 2045-10-29 16:17:06 +01:00 committed by Marcela Mašláňová
parent 56ba289b23
commit 62dcc5c127

View file

@ -75,7 +75,9 @@ class Tuned:
while True:
lh = {}
for p in self.mp:
lh.update(p.getLoad())
load = p.getLoad()
if load != None:
lh.update(load)
for p in self.tp:
p.setTuning(lh)
time.sleep(self.interval)