direct-io.hg
changeset 1999:3eab8d7061ba
bitkeeper revision 1.1108.35.8 (410a4c09l7HPWH1kBbpNNv0UFUHvCA)
Add missing call for console disconnect.
Add missing call for console disconnect.
author | mjw@wray-m-3.hpl.hp.com |
---|---|
date | Fri Jul 30 13:24:25 2004 +0000 (2004-07-30) |
parents | 7987ae627d4e |
children | 1ab8cef48b73 |
files | tools/python/xen/xend/XendClient.py |
line diff
1.1 --- a/tools/python/xen/xend/XendClient.py Fri Jul 30 08:49:23 2004 +0000 1.2 +++ b/tools/python/xen/xend/XendClient.py Fri Jul 30 13:24:25 2004 +0000 1.3 @@ -554,6 +554,10 @@ class Xend: 1.4 def xend_console(self, id): 1.5 return self.xendGet(self.consoleurl(id)) 1.6 1.7 + def xend_console_disconnect(self, id): 1.8 + return self.xendPost(self.consoleurl(id), 1.9 + {'op' : 'disconnect'}) 1.10 + 1.11 def xend_vnets(self): 1.12 return self.xendGet(self.vneturl()) 1.13