diff options
author | David Lehman <dlehman@redhat.com> | 2009-03-27 15:40:47 -0500 |
---|---|---|
committer | David Lehman <dlehman@redhat.com> | 2009-03-30 21:22:44 -0500 |
commit | 8a662d698d5062c2ba0531b942bdaeaf5ce5132a (patch) | |
tree | 61498e5ea6735ff8d5f3a3a40f891f24e91705bf /storage | |
parent | c83e6b8b4e7e460a6983f44187c3c7e8763af3e7 (diff) | |
download | anaconda-8a662d698d5062c2ba0531b942bdaeaf5ce5132a.tar.gz anaconda-8a662d698d5062c2ba0531b942bdaeaf5ce5132a.tar.xz anaconda-8a662d698d5062c2ba0531b942bdaeaf5ce5132a.zip |
Increase udev_settle timeout in udev_get_block_devices. (#492049)
At this point the udev event queue could conceivably be quite long,
so we might as well give it a long timeout just in case.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/udev.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/udev.py b/storage/udev.py index 11df62927..49a6096dc 100644 --- a/storage/udev.py +++ b/storage/udev.py @@ -32,7 +32,7 @@ log = logging.getLogger("storage") def udev_get_block_devices(): - udev_settle(timeout=2) + udev_settle(timeout=30) entries = [] for path in enumerate_block_devices(): entry = udev_get_block_device(path) |