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:
parent
56ba289b23
commit
62dcc5c127
1 changed files with 3 additions and 1 deletions
4
tuned.py
4
tuned.py
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue