summaryrefslogtreecommitdiffstats
path: root/swift/1.4.8
diff options
context:
space:
mode:
Diffstat (limited to 'swift/1.4.8')
-rw-r--r--swift/1.4.8/plugins/Glusterfs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/swift/1.4.8/plugins/Glusterfs.py b/swift/1.4.8/plugins/Glusterfs.py
index 69902d85d48..11eca56ee14 100644
--- a/swift/1.4.8/plugins/Glusterfs.py
+++ b/swift/1.4.8/plugins/Glusterfs.py
@@ -105,13 +105,13 @@ def unmount(full_mount_path):
def get_export_list():
global mount_ip
- if remote_cluster:
+ if REMOTE_CLUSTER:
cmnd = 'ssh %s gluster volume info' % mount_ip
else:
cmnd = 'gluster volume info'
if os.system(cmnd + ' >> /dev/null'):
- if remove_cluster:
+ if REMOTE_CLUSTER:
raise Exception('Getting volume info failed %s, make sure to have \
passwordless ssh on %s', NAME, mount_ip)
else: