Update default for running_deleted_instance_action

Update the default value of running_deleted_instance_action to 'reap'
from 'log'.  Consensus seems to be that this is what most people expect.

DocImpact

http://lists.openstack.org/pipermail/openstack-dev/2013-October/016153.html

Change-Id: I24990e20c8b85fb8b7ce15c229f99f5b0281f103
This commit is contained in:
Russell Bryant
2013-10-07 19:02:43 -04:00
parent a28979f292
commit 060b274a13
2 changed files with 2 additions and 2 deletions

View File

@@ -730,7 +730,7 @@
# Action to take if a running deleted instance is
# detected.Valid options are 'noop', 'log' and 'reap'. Set to
# 'noop' to disable. (string value)
#running_deleted_instance_action=log
#running_deleted_instance_action=reap
# Number of seconds to wait between runs of the cleanup task.
# (integer value)

View File

@@ -178,7 +178,7 @@ timeout_opts = [
running_deleted_opts = [
cfg.StrOpt("running_deleted_instance_action",
default="log",
default="reap",
help="Action to take if a running deleted instance is detected."
"Valid options are 'noop', 'log' and 'reap'. "
"Set to 'noop' to disable."),