summaryrefslogtreecommitdiffstats
path: root/gluster
diff options
context:
space:
mode:
authorThiago da Silva <thiago@redhat.com>2014-01-17 11:30:33 -0500
committerThiago da Silva <thiago@redhat.com>2014-01-17 11:30:33 -0500
commitacef148b02c5ab0204e1820457cb058f08be5db2 (patch)
tree93f5a19384976e6fdd23dd20677910f78640728a /gluster
parent63f15a9d6f1f506f8c62239cd91a970377a29e3e (diff)
remove unused libraries import
xdr and glfs were not being used, so they are being removed for now Change-Id: I8db793f66f2f2a6442f3a6b6f53617d52cc52a92 Signed-off-by: Thiago da Silva <thiago@redhat.com>
Diffstat (limited to 'gluster')
-rw-r--r--gluster/gfapi.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/gluster/gfapi.py b/gluster/gfapi.py
index 00a7470..516a1f0 100644
--- a/gluster/gfapi.py
+++ b/gluster/gfapi.py
@@ -10,9 +10,6 @@ from contextlib import contextmanager
# Looks like ctypes is having trouble with dependencies, so just force them to
# load with RTLD_GLOBAL until I figure that out.
-glfs = ctypes.CDLL(find_library("glusterfs"), ctypes.RTLD_GLOBAL,
- use_errno=True)
-xdr = ctypes.CDLL(find_library("gfxdr"), ctypes.RTLD_GLOBAL, use_errno=True)
api = ctypes.CDLL(find_library("gfapi"), ctypes.RTLD_GLOBAL, use_errno=True)
# Wow, the Linux kernel folks really play nasty games with this structure. If