Fix a variable dereference
Signed-off-by: Ondřej Lysoněk <olysonek@redhat.com>
This commit is contained in:
parent
eeaa444cb3
commit
c6472e37c0
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ class Application(object):
|
|||
log.info("dynamic tuning is globally disabled")
|
||||
|
||||
monitors_repository = monitors.Repository()
|
||||
udev_buffer_size = config.get_size("udev_buffer_size", consts.CFG_DEF_UDEV_BUFFER_SIZE)
|
||||
udev_buffer_size = self.config.get_size("udev_buffer_size", consts.CFG_DEF_UDEV_BUFFER_SIZE)
|
||||
hardware_inventory = hardware.Inventory(buffer_size=udev_buffer_size)
|
||||
device_matcher = hardware.DeviceMatcher()
|
||||
device_matcher_udev = hardware.DeviceMatcherUdev()
|
||||
|
|
|
|||
Loading…
Reference in a new issue