Disable the image cache manager by default

bug #1075018 and bug #1078594 are very serious issues with the image
cache manager when using shared storage. We couldn't address the
issues in time for 2012.2.1 because of the riskiness of the changes
required.

As a workaround, disable that code by default using:

  image_cache_manager_interval=0

Change-Id: Iab78abf855e919bc3d3278a39882ff6d39bd3c1c
This commit is contained in:
Mark McLoughlin 2012-11-28 17:47:38 +00:00
parent b17b5e096c
commit 22d7c3bb0e
2 changed files with 2 additions and 2 deletions

View File

@ -662,7 +662,7 @@
#### detected.Valid options are 'noop', 'log' and 'reap'. Set to
#### 'noop' to disable.
# image_cache_manager_interval=40
# image_cache_manager_interval=0
#### (IntOpt) Number of periodic scheduler ticks to wait between runs of
#### the image cache manager.

View File

@ -128,7 +128,7 @@ compute_opts = [
"Valid options are 'noop', 'log' and 'reap'. "
"Set to 'noop' to disable."),
cfg.IntOpt("image_cache_manager_interval",
default=40,
default=0,
help="Number of periodic scheduler ticks to wait between "
"runs of the image cache manager."),
cfg.IntOpt("heal_instance_info_cache_interval",