summaryrefslogtreecommitdiff
path: root/HACKING.rst
diff options
context:
space:
mode:
authorJay S. Bryant <jsbryant@us.ibm.com>2015-01-13 17:11:33 -0600
committerJay S. Bryant <jsbryant@us.ibm.com>2015-01-14 09:09:58 -0600
commitd8301e58bfbe1590d38721485dc8516b05339d66 (patch)
treeec7092edd8ac588ab30713735c600d884be22c64 /HACKING.rst
parentfadc8334740ac4b98e4755c28fe29b15cc1541bc (diff)
downloadcinder-d8301e58bfbe1590d38721485dc8516b05339d66.tar.gz
Add hacking check for oslo namespace usage
We want to make sure that we don't have usage of the old oslo.concurrency naming slipping in with new changes where we should be using the oslo_concurrency namespace. This change adds a hacking check to avoid use of the deprecated namespace. As we convert more oslo libraries to the new namespace the check will be updated to enforce use of the new namespace. This hacking check is based upon the same N333 hacking check in Cinder. Change-Id: Ibec6d09e9d313c9e723f7542cedb9da5772d3de2
Diffstat (limited to 'HACKING.rst')
-rw-r--r--HACKING.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/HACKING.rst b/HACKING.rst
index 93e0df935..bca0ccff7 100644
--- a/HACKING.rst
+++ b/HACKING.rst
@@ -13,6 +13,7 @@ Cinder Specific Commandments
- [N323] Add check for explicit import of _() to ensure proper translation.
- [N324] Enforce no use of LOG.audit messages. LOG.info should be used instead.
- [N327] assert_called_once is not a valid Mock method.
+- [N333] Ensure that oslo namespaces are used for namespaced libraries.
General