From 0cc73c92734acc86cb559fc2d3b3ee8c834e5f63 Mon Sep 17 00:00:00 2001 From: Csaba Henk Date: Mon, 14 Feb 2011 11:19:25 +0000 Subject: syncdaemon: fix KeyError Signed-off-by: Csaba Henk Signed-off-by: Anand V. Avati 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(-) (limited to 'xlators/features') diff --git a/xlators/features/marker/utils/syncdaemon/resource.py b/xlators/features/marker/utils/syncdaemon/resource.py index 60e32e0dc42..afafd54143a 100644 --- a/xlators/features/marker/utils/syncdaemon/resource.py +++ b/xlators/features/marker/utils/syncdaemon/resource.py @@ -400,7 +400,7 @@ class SSH(AbstractUrl, SlaveRemote): return False def start_fd_client(self, *a, **opts): - if opts['deferred']: + if opts.get('deferred'): return a sup(self, *a) ityp = type(self.inner_rsc) -- cgit