Doc Text:
|
During Red Hat OpenStack infrastructure integration, clicking fleeced Init Processes on an image summary screen threw an error: undefined method `name' for nil:NilClass [vm_cloud/explorer
This bug has been fixed by making show_association use controller_to_model when retrieving @record. This makes linux_initprocesses (and others) load from VmOrTemplate, not VmCloud - without it, /vm_cloud/linux_initprocesses/119 tries to load VmCloud(id=119) and not VmOrTemplate(id=119) in CiProcessing#show_association. This has been broken since ec1389e which unified all the show_association methods, without the special @record load handling that was present in VmCommon. Without it, a load from VmCloud is attempted instead of VmOrTemplate, and fails. This likely affects all show_association calls made from vm_common - Running Processes, Registry Entries, Advanced Settings, Init Processes, Win32 Services, Kernel Drivers, File System Drivers, Files and Security Groups.
|