Displaying 3 results from an estimated 3 matches for "exporttodb".
2005 Sep 09
0
[PATCH] Call dominfo.device_delete instead of non-existant dominfo.device_destroy
...ls/python/xen/xend/XendDomain.py Fri Sep 9 14:46:01 2005
@@ -667,7 +667,7 @@
@param type: device type
"""
dominfo = self.domain_lookup(id)
- val = dominfo.device_destroy(type, devid)
+ val = dominfo.device_delete(type, devid)
dominfo.exportToDB()
return val
--
__________________________________________________________________
Sean Dague Mid-Hudson Valley
sean at dague dot net Linux Users Group
http://dague.net http://mhvlug.org...
2005 Sep 13
1
[RESEND] [PATCH] Call dominfo.device_delete instead of non-existant dominfo.device_destroy
This is a resend on the patch from late last week as I haven''t seen it in
the changelog yet. Comments welcomed if there is an issue with the patch.
-Sean
--
__________________________________________________________________
Sean Dague Mid-Hudson Valley
sean at dague dot net Linux Users Group
http://dague.net
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...> save=save)
>+ if self.console_channel:
>+ self.console_channel.saveToDB(self.db.addChild("console_channel"),
>+ save=save)
> if self.image:
> self.image.exportToDB(save=save, sync=sync)
> self.db.exportToDB(self, fields=self.__exports__, save=save, sync=sync)
>@@ -328,6 +334,9 @@
>
> def getStoreChannel(self):
> return self.store_channel
>+
>+ def getConsoleChannel(self):
>+ return self.console_channel
&g...