From 34e7a10cfcd254553a0d6bae855cc5321614afd0 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 27 Aug 2026 15:43:17 -0400 Subject: [PATCH] Refer to self instead of non-existant disk --- confluent_osdeploy/common/profile/scripts/getinstalldisk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_osdeploy/common/profile/scripts/getinstalldisk b/confluent_osdeploy/common/profile/scripts/getinstalldisk index 1b4a4915..4675ae9d 100644 --- a/confluent_osdeploy/common/profile/scripts/getinstalldisk +++ b/confluent_osdeploy/common/profile/scripts/getinstalldisk @@ -87,7 +87,7 @@ class DiskInfo(object): if kernname in slotinfo: self.is_m2 = True break - if getattr(self, 'busaddr', None) and disk.busaddr in slotinfo: + if getattr(self, 'busaddr', None) and self.busaddr in slotinfo: self.is_m2 = True if not self.driver and 'imsm' not in self.mdcontainer and self.subsystype != 'nvm': raise Exception("No driver detected")