Merge "Replace Chinese punctuation with English punctuation"

This commit is contained in:
Zuul 2018-01-25 15:24:45 +00:00 committed by Gerrit Code Review
commit 1c47dd0690
3 changed files with 4 additions and 4 deletions

View File

@ -71,11 +71,11 @@ Use Cases
Proposed change
===============
Cinder will use a framework we will call API Microversions for allowing
Cinder will use a framework we will call 'API Microversions' for allowing
changes to the API while preserving backward compatibility. The basic idea is
that a user has to explicitly ask for their request to be treated with a
particular version of the API. So breaking changes can be added to the API
without breaking users who dont specifically ask for it. This is done with
without breaking users who don't specifically ask for it. This is done with
an HTTP header X-OpenStack-Cinder-API-Version which is a monotonically
increasing semantic version number starting from 2.1.

View File

@ -168,7 +168,7 @@ on where to perform operations.
In a similar way to the Service state reporting we need to prevent concurrent
access to the data structure when updating this information. Fortunately for us
we are storing this information in a Python dictionary on the schedulers, and
since we are using an eventlet executor for the RPC server we dont have to
since we are using an eventlet executor for the RPC server we don't have to
worry about using locks, the inherent behavior of the executor will prevent
concurrent access to the dictionary. So no changes are needed there to have
exclusive access to the data structure.

View File

@ -171,7 +171,7 @@ each API method in ad-hoc. These changes would make the API method code dirty
and we needed to create multiple patches due to incomplete validation.
If using JSON Schema definitions instead, acceptable request formats are clear
and we dont need to do ad-hoc works in the future.
and we don't need to do ad-hoc works in the future.
Pecan Framework:
`Pecan <http://pecan.readthedocs.org/en/latest/>`_