-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge "RBD: Use rados_connect_timeout to override timeout"
- Loading branch information
Showing
2 changed files
with
34 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
releasenotes/notes/fix-rados_connect_timeout-39e5074bc1a3b65b.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
features: | ||
- | | ||
RBD driver: the ``rados_connect_timeout`` config option has been | ||
un-deprecated and its behavior has been improved. A value of ``0`` | ||
is now respected as disabling timeout in requests, while a value less | ||
than zero indicates that glance_store will not set a timeout but | ||
instead will use whatever timeouts are set in the Ceph configuration | ||
file. | ||
upgrade: | ||
- | | ||
RBD driver: the default value of the ``rados_connect_timeout`` option | ||
has been changed from 0 to -1, so that the RBD driver will by default | ||
use the timeout values defined in ``ceph.conf``. Be aware that | ||
setting this option to 0 disables timeouts (that is, the RBD driver | ||
will make requests with a timeout of zero, and all requests wait forever), | ||
thereby overriding any timeouts that are set in the Ceph configuration | ||
file. |