diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-06-10 09:27:37 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2023-06-10 09:27:37 +0000 |
commit | a4b247c19b690c2643097fdbec096470e635b4a0 (patch) | |
tree | 4b9af23374c7a5d6266e91b2d9a52c595e8866c6 /staslib/trid.py | |
parent | Adding upstream version 2.2.1. (diff) | |
download | nvme-stas-a4b247c19b690c2643097fdbec096470e635b4a0.tar.xz nvme-stas-a4b247c19b690c2643097fdbec096470e635b4a0.zip |
Adding upstream version 2.2.2.upstream/2.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | staslib/trid.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/staslib/trid.py b/staslib/trid.py index ea40b7d..d9a05ba 100644 --- a/staslib/trid.py +++ b/staslib/trid.py @@ -106,7 +106,12 @@ class TID: # pylint: disable=too-many-instance-attributes 'host-traddr': self.host_traddr, 'host-iface': self.host_iface, } - data.update(self._cfg) + + # When migrating an old last known config, the "_cfg" member may + # not exist. Therefor retrive it with getattr() to avoid a crash. + cfg = getattr(self, '_cfg', None) + if cfg: + data.update(cfg) return data def __str__(self): |