Peter V. Saveliev has uploaded a new change for review. Change subject: [WIP] objectfs integration ......................................................................
[WIP] objectfs integration Export VM objects as files in runtime. Signed-off-by: Peter V. Saveliev <[email protected]> Change-Id: I6dd2ca2245f3f5496eca9f8c14bed79d4638c189 --- M vdsm/vm.py 1 file changed, 7 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/83/8383/1 diff --git a/vdsm/vm.py b/vdsm/vm.py index d49eef1..cd6c6ca 100644 --- a/vdsm/vm.py +++ b/vdsm/vm.py @@ -33,6 +33,7 @@ from logUtils import SimpleLogAdapter import libvirt from vdsm import vdscli +from pyvfs.objectfs import export DEFAULT_BRIDGE = config.get("vars", "default_bridge") @@ -250,6 +251,12 @@ 'Restoring state', 'Saving State', 'Up', 'WaitForLaunch') + +@export(blacklist=[ + "/log", + "/MigrationSourceThreadClass", + "/cif", + ]) class Vm(object): """ Used for abstracting communication between various parts of the -- To view, visit http://gerrit.ovirt.org/8383 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I6dd2ca2245f3f5496eca9f8c14bed79d4638c189 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Peter V. Saveliev <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
