Bug 593310

Summary: Don't set null parameter values for unchanged object fields
Product: Red Hat Enterprise MRG Reporter: Justin Ross <jross>
Component: qpid-qmfAssignee: Ted Ross <tross>
Status: CLOSED CURRENTRELEASE QA Contact: MRG Quality Engineering <mrgqe-bugs>
Severity: medium Docs Contact:
Priority: low    
Version: DevelopmentCC: kgiusti, mwagner, tross
Target Milestone: Next Version   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2010-10-13 13:22:46 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Justin Ross 2010-05-18 13:43:53 UTC
Index: console.py
===================================================================
--- console.py  (revision 939472)
+++ console.py  (working copy)
@@ -188,7 +188,8 @@
         else:
           self._properties.append((prop, values[prop.name]))
       else:
-        self._properties.append((prop, None))
+        pass
+        #self._properties.append((prop, None))
     for stat in self._schema.getStatistics():
       if stat.name in values:
         self._statistics.append((stat, values[stat.name]))

Comment 1 Ted Ross 2010-05-18 19:16:57 UTC
Fixed upstream in revision 945833.