_getmaster must use cached value

This commit is contained in:
Emmanuel Garette 2015-12-16 23:04:00 +01:00
parent 59f59b0b1b
commit ce8b73507f
1 changed files with 5 additions and 5 deletions

View File

@ -135,11 +135,11 @@ class MasterSlaves(object):
def _getmaster(self, values, opt, path, validate, force_permissive,
validate_properties, c_slave_path,
c_slave_value, self_properties, index):
value = values._get_validated_value(opt, path, validate,
force_permissive,
validate_properties,
self_properties=self_properties,
index=index)
value = values._get_cached_value(opt, path=path, validate=validate,
force_permissive=force_permissive,
validate_properties=validate_properties,
self_properties=self_properties,
from_masterslave=True, index=index)
if index is None and validate is True:
masterlen = len(value)
for slave in self.getslaves(opt):