mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
correct default value for salt.cache.Cache
This commit is contained in:
parent
d02953ce6a
commit
292f8c79b8
1 changed files with 1 additions and 1 deletions
2
salt/cache/__init__.py
vendored
2
salt/cache/__init__.py
vendored
|
@ -73,7 +73,7 @@ class Cache(object):
|
|||
self.cachedir = opts.get('cachedir', salt.syspaths.CACHE_DIR)
|
||||
else:
|
||||
self.cachedir = cachedir
|
||||
self.driver = opts.get('cache', salt.config.DEFAULT_MASTER_OPTS)
|
||||
self.driver = opts.get('cache', salt.config.DEFAULT_MASTER_OPTS['cache'])
|
||||
self.serial = Serial(opts)
|
||||
self._modules = None
|
||||
self._kwargs = kwargs
|
||||
|
|
Loading…
Add table
Reference in a new issue