Skip to content

Commit 009ffe4

Browse files
committed
Fix wrong description about minimum values
The following options have minimum values defined, and too small values are not rounded but rejected by oslo.config. This change updates the description to explain the actual behavior. Closes-Bug: #2007532 Change-Id: I8d1533ae4b44d4e8f811dce554196f270e25da3e
1 parent d8b4b7b commit 009ffe4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

nova/conf/libvirt.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -324,11 +324,11 @@
324324
Target maximum period of time Nova will try to keep the instance paused
325325
during the last part of the memory copy, in *milliseconds*.
326326
327-
Will be rounded up to a minimum of 100ms. You can increase this value
328-
if you want to allow live-migrations to complete faster, or avoid
329-
live-migration timeout errors by allowing the guest to be paused for
330-
longer during the live-migration switch over. This value may be exceeded
331-
if there is any reduction on the transfer rate after the VM is paused.
327+
Minimum downtime is 100ms. You can increase this value if you want to allow
328+
live-migrations to complete faster, or avoid live-migration timeout errors
329+
by allowing the guest to be paused for longer during the live-migration switch
330+
over. This value may be exceeded if there is any reduction on the transfer rate
331+
after the VM is paused.
332332
333333
Related options:
334334
@@ -340,7 +340,7 @@
340340
help="""
341341
Number of incremental steps to reach max downtime value.
342342
343-
Will be rounded up to a minimum of 3 steps.
343+
Minimum number of steps is 3.
344344
"""),
345345
cfg.IntOpt('live_migration_downtime_delay',
346346
default=75,

0 commit comments

Comments
 (0)