blob: 33bdbe8125d7414fdf6f5331329ede4bb039940c [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From 9f5a048181cf29d241d96814e736b8235b3d42b1 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Fri, 16 Jun 2017 15:43:00 +0800
4Subject: [PATCH 12/13] invoking mkfs with infinite timeout
5
6This large timeout is needed when running on machines with
7lots of disks, or with slow disks.
8
9Upstream-Status: Pending
10
11Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
12---
13 blivet/tasks/fsmkfs.py | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/blivet/tasks/fsmkfs.py b/blivet/tasks/fsmkfs.py
17index ad166aa..7bf5075 100644
18--- a/blivet/tasks/fsmkfs.py
19+++ b/blivet/tasks/fsmkfs.py
20@@ -170,7 +170,7 @@ class FSMkfs(task.BasicApplication, FSMkfsTask):
21 options = options or []
22 cmd = self._mkfs_command(options, label, set_uuid)
23 try:
24- ret = util.run_program(cmd)
25+ ret = util.run_program(cmd, timeout=-1)
26 except OSError as e:
27 raise FSError(e)
28
29--
302.7.4
31