Displaying 1 result from an estimated 1 matches for "hasprops".
2009 Nov 04
4
[PATCH server] Update daemons to use new QMF.
...e']} is not up after waiting 20 seconds, skipping dead VM check."
else
@@ -301,16 +304,23 @@ class DbOmatic < Qpid::Qmf::Console
end
end
- def object_props(broker, obj)
- target = obj.schema.klass_key.package
+ def object_update(obj, hasProps, hasStats)
+ target = obj.object_class.package_name
+ type = obj.object_class.class_name
return if target != "com.redhat.libvirt"
- type = obj.schema.klass_key.klass_name
+ if hasProps
+ update_props(obj, type)
+ end
+ if has...