From e488f48ebc3d545b9924b828e59f08a5d42571ba Mon Sep 17 00:00:00 2001 From: Kaushik BV Date: Wed, 23 Mar 2011 00:52:22 +0000 Subject: Gsyncd: fix a typo for the command-line arg of gluster process Signed-off-by: Kaushik BV Signed-off-by: Vijay Bellur BUG: 1570 (geosync related changes) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1570 --- xlators/features/marker/utils/syncdaemon/resource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xlators/features/marker/utils/syncdaemon/resource.py b/xlators/features/marker/utils/syncdaemon/resource.py index a56b6caa014..ad0d98bad13 100644 --- a/xlators/features/marker/utils/syncdaemon/resource.py +++ b/xlators/features/marker/utils/syncdaemon/resource.py @@ -340,7 +340,7 @@ class GLUSTER(AbstractUrl, SlaveLocal, SlaveRemote): d = tempfile.mkdtemp() try: argv = [gconf.gluster_command] + \ - (gconf.gluster_log_level and ['-L', gConf.gluster_log_level] or []) + \ + (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] if os.spawnvp(os.P_WAIT, argv[0], argv): -- cgit