Docs: cleanup doc8 errors

Fix errors identified by doc8 other than D001 for lines too long.

Change-Id: If351030cd5add101a19be4b5b759f56ca49b92d0
This commit is contained in:
Sean McGinnis 2016-07-23 20:57:04 -05:00
parent 99c362bb77
commit 5abd344818
7 changed files with 13 additions and 12 deletions

View File

@ -35,3 +35,4 @@ Access Control
--------------
If you are running with Linux kernel security module enabled (for example SELinux or AppArmor), make sure that the configuration file has the appropriate context to access the linked file.

View File

@ -100,7 +100,7 @@ We call this infor the model_update and it's used to update vital target
information associated with the volume in the Cinder database.
driver.initialize_connection
***************************
****************************
Now that we've actually built a target and persisted the important
bits of information associated with it, we're ready to actually assign

View File

@ -96,9 +96,9 @@ Relationship of US eAuth to RBAC
Typical implementations of US eAuth authentication systems are structured as follows::
[ MS Active Directory or other federated LDAP user store ]
--> backends to…
--> backends to…
[ SUN Identity Manager or other SAML Policy Controller ]
--> maps URLs to groups…
--> maps URLs to groups…
[ Apache Policy Agent in front of eAuth-secured Web Application ]
In more ideal implementations, the remainder of the application-specific account information is stored either in extended schema on the LDAP server itself, via the use of a translucent LDAP proxy, or in an independent datastore keyed off of the UID provided via SAML assertion.

View File

@ -28,9 +28,9 @@ in the long-running code path. The sleep call will trigger a context switch
if there are pending threads, and using an argument of 0 will avoid introducing
delays in the case that there is only a single green thread::
from eventlet import greenthread
...
greenthread.sleep(0)
from eventlet import greenthread
...
greenthread.sleep(0)
MySQL access and eventlet