Merge "Fix some typos in zaqar"

This commit is contained in:
Jenkins 2017-06-20 08:39:17 +00:00 committed by Gerrit Code Review
commit e70dacd18e
2 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ Command Line
------------
we can use OpenStack Client to analyse the user request now. For example, if we
want know the performance for "queue list", we can do like this:
want to know the performance for "queue list", we can do like this:
1. OpenStack Client now supports OSprofiler by default. Only thing we need to
do is adding ``--os-profile {hmac_keys}`` in the command::
@ -112,7 +112,7 @@ It also supports json format::
osprofiler trace show --json 2902c7a3-ee18-4b08-aae7-4e34388f9352 --connection-string mongodb://localhost:27017
Of cause it supports to save the result to a file::
Of course it supports to save the result to a file::
osprofiler trace show --json 2902c7a3-ee18-4b08-aae7-4e34388f9352 --out list_test --connection-string mongodb://localhost:27017

View File

@ -49,7 +49,7 @@ protocol, which is one of the main requirements in todays scalable applicatio
Producer - Consumer
Producer - Consumer is a pattern where each worker application that reads
the queue has to claim the message in order to prevent duplicate processing.
Later, when the work is done, the worker is responsible from deleting the
Later, when the work is done, the worker is responsible for deleting the
message. If message is not deleted in a predefined time (claim TTL), it can
be claimed by other workers.