From 8b9cb1701f6365f7b4f5ed166f37020781f59467 Mon Sep 17 00:00:00 2001 From: Csaba Henk Date: Tue, 12 Jul 2011 03:38:01 +0200 Subject: geo-rep: minor fixes Change-Id: I5c5211858bdb2bd28324818362d95edd97f94207 BUG: 2778 Reviewed-on: http://review.gluster.com/81 Tested-by: Gluster Build System Reviewed-by: Kaushik BV --- xlators/features/marker/utils/syncdaemon/configinterface.py | 2 +- xlators/mgmt/glusterd/src/glusterd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'xlators') diff --git a/xlators/features/marker/utils/syncdaemon/configinterface.py b/xlators/features/marker/utils/syncdaemon/configinterface.py index a170b2236..dff6c111d 100644 --- a/xlators/features/marker/utils/syncdaemon/configinterface.py +++ b/xlators/features/marker/utils/syncdaemon/configinterface.py @@ -133,7 +133,7 @@ class GConffile(object): if match: update_from_sect(sect, MultiDict(dct, mad, *self.auxdicts)) if self.config.has_section(self.section()): - update_from_sect(self.section(), MultiDict(dct, mad, *self.auxdicts)) + update_from_sect(self.section(), MultiDict(dct, *self.auxdicts)) def get(self, opt=None): d = {} diff --git a/xlators/mgmt/glusterd/src/glusterd.c b/xlators/mgmt/glusterd/src/glusterd.c index 19a7d9da0..fa56898c8 100644 --- a/xlators/mgmt/glusterd/src/glusterd.c +++ b/xlators/mgmt/glusterd/src/glusterd.c @@ -417,7 +417,7 @@ configure_syncdaemon (glusterd_conf_t *conf) runner_add_args (&runner, "gluster-command", GFS_PREFIX"/sbin/glusterfs " "--xlator-option *-dht.assert-no-child-down=true", - "." ".", NULL); + ".", ".", NULL); ret = runner_run (&runner); if (ret) goto out; -- cgit