diff options
author | Aravinda VK <avishwan@redhat.com> | 2013-11-07 12:52:23 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2014-02-02 20:26:40 -0800 |
commit | ab55d60e2615bd47a9b7ad3da4e85ba1be4c3781 (patch) | |
tree | 90a39754dfa53fbc7a15618e7817f687963b3e6f /geo-replication/syncdaemon | |
parent | 52e98957da62168adcdc33782b027fa35b9d283e (diff) |
geo-rep: get new config value after config value reset
When config.read is called it preserves the previous values
from the the previously opened config file.
For example
import ConfigParser
config = ConfigParser.RawConfigParser()
config.read("defaults.conf")
config.read("preferences.conf")
When change in config file is identified it will open new
instance of config to avoid getting old config values.
BUG: 1036539
Change-Id: Ie3226e4a75cbff9e69ad2d7cb5f4daf45c6ae0c8
Signed-off-by: Aravinda VK <avishwan@redhat.com>
Reviewed-on: http://review.gluster.org/6747
Reviewed-on: http://review.gluster.org/6845
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Venky Shankar <vshankar@redhat.com>
Diffstat (limited to 'geo-replication/syncdaemon')
-rw-r--r-- | geo-replication/syncdaemon/configinterface.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/geo-replication/syncdaemon/configinterface.py b/geo-replication/syncdaemon/configinterface.py index 0f764c47a7e..8353c1161b2 100644 --- a/geo-replication/syncdaemon/configinterface.py +++ b/geo-replication/syncdaemon/configinterface.py @@ -82,6 +82,7 @@ class GConffile(object): if sys.exc_info()[1].errno == errno.ENOENT: sres = None + self.config = ConfigParser.RawConfigParser() self.config.read(self.path) self._normconfig() |