Merge "Fix some spelling typo in manual and error message"
This commit is contained in:
commit
f8bcc4257a
@ -83,7 +83,7 @@ if [[ -z "$MULTITENANCY_ENABLED" ]]; then
|
|||||||
elif [[ $WITH_SHARE_SERVER_HANDLING_MODES -ge 1 ]]; then
|
elif [[ $WITH_SHARE_SERVER_HANDLING_MODES -ge 1 ]]; then
|
||||||
iniset $BASE/new/tempest/etc/tempest.conf share multitenancy_enabled True
|
iniset $BASE/new/tempest/etc/tempest.conf share multitenancy_enabled True
|
||||||
else
|
else
|
||||||
echo 'Should never get here. If get, then error occured.'
|
echo 'Should never get here unless an error occurred.'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
@ -93,7 +93,7 @@ storage systems, the driver configuration file is as follows:
|
|||||||
- `Thin_StoragePool` is a name of a Thin storage pool to be used.
|
- `Thin_StoragePool` is a name of a Thin storage pool to be used.
|
||||||
- `Thick_StoragePool` is a name of a Thick storage pool to be used.
|
- `Thick_StoragePool` is a name of a Thick storage pool to be used.
|
||||||
- `WaitInterval` is the interval time of querying the file system status.
|
- `WaitInterval` is the interval time of querying the file system status.
|
||||||
- `Timeout` is the timeout period for wating command execution of a device to
|
- `Timeout` is the timeout period for waiting command execution of a device to
|
||||||
complete.
|
complete.
|
||||||
|
|
||||||
Backend Configuration
|
Backend Configuration
|
||||||
|
@ -139,8 +139,8 @@ More precisely Consumers need the following parameters:
|
|||||||
* Auto_delete: if set, the exchange is deleted when all queues have finished using it. Default is False.
|
* Auto_delete: if set, the exchange is deleted when all queues have finished using it. Default is False.
|
||||||
* Exclusive: exclusive queues (such as non-shared) may only be consumed from by the current connection. When exclusive is on, this also implies auto_delete. Default is False.
|
* Exclusive: exclusive queues (such as non-shared) may only be consumed from by the current connection. When exclusive is on, this also implies auto_delete. Default is False.
|
||||||
* Exchange_type: AMQP defines several default exchange types (routing algorithms) that covers most of the common messaging use cases.
|
* Exchange_type: AMQP defines several default exchange types (routing algorithms) that covers most of the common messaging use cases.
|
||||||
* Auto_ack: acknowledgement is handled automatically once messages are received. By default auto_ack is set to False, and the receiver is required to manually handle acknowledgment.
|
* Auto_ack: acknowledgment is handled automatically once messages are received. By default auto_ack is set to False, and the receiver is required to manually handle acknowledgment.
|
||||||
* No_ack: it disable acknowledgement on the server-side. This is different from auto_ack in that acknowledgement is turned off altogether. This functionality increases performance but at the cost of reliability. Messages can get lost if a client dies before it can deliver them to the application.
|
* No_ack: it disable acknowledgment on the server-side. This is different from auto_ack in that acknowledgment is turned off altogether. This functionality increases performance but at the cost of reliability. Messages can get lost if a client dies before it can deliver them to the application.
|
||||||
* Auto_declare: if this is True and the exchange name is set, the exchange will be automatically declared at instantiation. Auto declare is on by default.
|
* Auto_declare: if this is True and the exchange name is set, the exchange will be automatically declared at instantiation. Auto declare is on by default.
|
||||||
Publishers specify most the parameters of Consumers (such as they do not specify a queue name), but they can also specify the following:
|
Publishers specify most the parameters of Consumers (such as they do not specify a queue name), but they can also specify the following:
|
||||||
* Delivery_mode: the default delivery mode used for messages. The value is an integer. The following delivery modes are supported by RabbitMQ:
|
* Delivery_mode: the default delivery mode used for messages. The value is an integer. The following delivery modes are supported by RabbitMQ:
|
||||||
|
Loading…
Reference in New Issue
Block a user