From 776823adfb2d9ea140b9d849ee9a1dd07991a94c Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Thu, 18 Nov 2021 13:07:28 +0000 Subject: Increased disk delays by 100% (for unsuccessful operations), successful should still be quick. (#730) Co-authored-by: Anton Hvornum --- archinstall/lib/disk/filesystem.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archinstall/lib/disk/filesystem.py') diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index fe7be498..93b0f375 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -33,7 +33,7 @@ class Filesystem: return True def partuuid_to_index(self, uuid): - for i in range(10): + for i in range(storage['DISK_RETRY_ATTEMPTS']): self.partprobe() output = json.loads(SysCommand(f"lsblk --json -o+PARTUUID {self.blockdevice.device}").decode('UTF-8')) @@ -42,7 +42,7 @@ class Filesystem: if (partuuid := partition.get('partuuid', None)) and partuuid.lower() == uuid: return index - time.sleep(1) + time.sleep(storage['DISK_TIMEOUTS']) raise DiskError(f"Failed to convert PARTUUID {uuid} to a partition index number on blockdevice {self.blockdevice.device}") -- cgit v1.2.3-54-g00ecf