##// END OF EJS Templates
fixed add cache defaults missing data_dir
marcink -
r1032:2e9f2bd2 beta
parent child Browse files
Show More
@@ -506,6 +506,9 b' def add_cache(settings):'
506 60))
506 60))
507 region_settings.setdefault('lock_dir',
507 region_settings.setdefault('lock_dir',
508 cache_settings.get('lock_dir'))
508 cache_settings.get('lock_dir'))
509 region_settings.setdefault('data_dir',
510 cache_settings.get('data_dir'))
511
509 if 'type' not in region_settings:
512 if 'type' not in region_settings:
510 region_settings['type'] = cache_settings.get('type',
513 region_settings['type'] = cache_settings.get('type',
511 'memory')
514 'memory')
General Comments 0
You need to be logged in to leave comments. Login now