nova/releasenotes/notes/bug-1799707-fix-shutdown_timeout-min-22ce0b373af1ec90.yaml
Matt Riedemann 2cff865af4 Fix min config value for shutdown_timeout option
The shutdown_timeout config option was added in commit
c07ed15415 without a min
value. The min value was later added in commit
d67ea6e554 and set to 1,
which means the option can never be configured to mean
"always immediately shutdown". That is also inconsistent
with the description of the "os_shutdown_timeout" image
property in the glance metadata definition which says the
value can be set to 0 to force an immediate shutdown of
the guest.

This fixes the min value in the config option to be 0 which
is already what happens if we are not performing a clean
shutdown at all.

Change-Id: I399b9031d2aa477194697390e2cd3f78e3ac0f91
Closes-Bug: #1799707
2018-10-26 11:58:01 -04:00

8 lines
268 B
YAML

---
fixes:
- |
The ``[DEFAULT]/shutdown_timeout`` configuration option minimum value has
been fixed to be 0 rather than 1 to align with the corresponding
``os_shutdown_timeout`` image property. See bug
https://launchpad.net/bugs/1799707 for details.