summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaushik BV <kaushikbv@gluster.com>2011-03-23 00:52:22 +0000
committerVijay Bellur <vijay@dev.gluster.com>2011-03-25 04:11:58 -0700
commite488f48ebc3d545b9924b828e59f08a5d42571ba (patch)
tree4ba0a9ab2930cd4a1ada564b446d514506c6b267
parent89b45f610dfc455dd6c8fd84c1d3c9945ad62f4c (diff)
Gsyncd: fix a typo for the command-line arg of gluster process
Signed-off-by: Kaushik BV <kaushikbv@gluster.com> Signed-off-by: Vijay Bellur <vijay@dev.gluster.com> BUG: 1570 (geosync related changes) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1570
-rw-r--r--xlators/features/marker/utils/syncdaemon/resource.py2
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 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):