components/python/oslo.config/patches/disable-oslo-deprecation.patch
branchs11u2-sru
changeset 4156 4b1def16fe9b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/python/oslo.config/patches/disable-oslo-deprecation.patch	Mon Apr 20 12:35:51 2015 -0700
@@ -0,0 +1,15 @@
+This patch removes the legacy oslo namespace deprecation check from the
+oslo.config library. The deprecated() function is left to satisfy the
+unit tests. It is not suitable for the upstream and should be removed
+once all of the relevant consumers have switched over to the new
+namespace.
+
+--- oslo.config-1.6.0/oslo/config/__init__.py.~1~	2015-01-05 10:32:34.000000000 -0800
++++ oslo.config-1.6.0/oslo/config/__init__.py	2015-03-02 12:24:59.359891746 -0800
+@@ -23,6 +23,3 @@ def deprecated():
+         DeprecationWarning,
+         stacklevel=3,
+     )
+-
+-
+-deprecated()