aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/lib
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2006-12-01 17:40:07 +0000
committerEwan Mellor <ewan@xensource.com>2006-12-01 17:40:07 +0000
commit468c5c0084f93c57fec838ee4102729d68623a6a (patch)
tree9e6c24417216f810d8edd520873111dd2e845d66 /tools/xm-test/lib
parentcebaab7c6b90391742eafd652c4aebc59f0e9052 (diff)
downloadxen-468c5c0084f93c57fec838ee4102729d68623a6a.tar.gz
xen-468c5c0084f93c57fec838ee4102729d68623a6a.tar.bz2
xen-468c5c0084f93c57fec838ee4102729d68623a6a.zip
Use the new xen-api.sock for the calls to the Xen-API server.
Signed-off-by: Ewan Mellor <ewan@xensource.com>
Diffstat (limited to 'tools/xm-test/lib')
-rw-r--r--tools/xm-test/lib/XmTestLib/xapi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/xm-test/lib/XmTestLib/xapi.py b/tools/xm-test/lib/XmTestLib/xapi.py
index 2a9ec209e3..bab0e103d9 100644
--- a/tools/xm-test/lib/XmTestLib/xapi.py
+++ b/tools/xm-test/lib/XmTestLib/xapi.py
@@ -57,7 +57,7 @@ _session = None
def _connect(*args):
global _server, _session, _initialised
if not _initialised:
- _server = ServerProxy('httpu:///var/run/xend/xmlrpc.sock')
+ _server = ServerProxy('httpu:///var/run/xend/xen-api.sock')
login = XAPI_DEFAULT_LOGIN
password = XAPI_DEFAULT_PASSWORD
creds = (login, password)