Fixing new caching related issue with host vars

The vars_cache was not being properly merged with the setup_cache
for all hosts, which was previously not noticed when registered
variables were stored in the setup_cache.

Fixes #8944
This commit is contained in:
James Cammarata 2014-09-09 15:35:08 -05:00
parent 0179c13e04
commit 10afaee108
5 changed files with 20 additions and 2 deletions

View file

@ -36,3 +36,6 @@ class BaseCacheModule(object):
def flush(self):
raise exceptions.NotImplementedError
def copy(self):
raise exceptions.NotImplementedError