diff options
-rw-r--r-- | xlators/features/marker/utils/syncdaemon/resource.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/marker/utils/syncdaemon/resource.py b/xlators/features/marker/utils/syncdaemon/resource.py index c937f80cf..2f42e9c44 100644 --- a/xlators/features/marker/utils/syncdaemon/resource.py +++ b/xlators/features/marker/utils/syncdaemon/resource.py @@ -401,7 +401,7 @@ class GLUSTER(AbstractUrl, SlaveLocal, SlaveRemote): def connect(self): d = tempfile.mkdtemp() try: - argv = [gconf.gluster_command] + \ + argv = gconf.gluster_command.split() + \ (gconf.gluster_log_level and ['-L', gconf.gluster_log_level] or []) + \ ['-l', gconf.gluster_log_file, '-s', self.host, '--volfile-id', self.volume, '--client-pid=-1', d] |