diff options
author | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-11-14 17:44:58 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-11-14 18:12:56 +0100 |
commit | 90a9ba95439da95fafe7ba54eb02898f14f4113d (patch) | |
tree | c1f2b9498d33ca4a9de9c8f54bb484f8921eee5b /src/live | |
parent | f5f8771b6f7aa6ff37dd688085133b28b4bf5f57 (diff) |
This error is bogus:
(2024-11-14 09:05:37) ogClient: [ERROR] - Partition query error for /dev/sdb: No medium found
skip if device cannot be opened instead.
Diffstat (limited to 'src/live')
-rw-r--r-- | src/live/ogOperations.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index cee55e5..2666606 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -814,7 +814,6 @@ class OgLiveOperations: partitions = get_partition_data(device=f'/dev/{disk}') disk_data = get_disk_data(device=f'/dev/{disk}') except Exception as e: - logging.error(e) continue self._refresh_payload_disk(disk_data, part_setup, num_disk) |