components/python/oslo.config/patches/disable-oslo-deprecation.patch
branchs11-update
changeset 4072 db0cec748ec0
equal deleted inserted replaced
4067:4be1f488dda8 4072:db0cec748ec0
       
     1 This patch removes the legacy oslo namespace deprecation check from the
       
     2 oslo.config library. The deprecated() function is left to satisfy the
       
     3 unit tests. It is not suitable for the upstream and should be removed
       
     4 once all of the relevant consumers have switched over to the new
       
     5 namespace.
       
     6 
       
     7 --- oslo.config-1.6.0/oslo/config/__init__.py.~1~	2015-01-05 10:32:34.000000000 -0800
       
     8 +++ oslo.config-1.6.0/oslo/config/__init__.py	2015-03-02 12:24:59.359891746 -0800
       
     9 @@ -23,6 +23,3 @@ def deprecated():
       
    10          DeprecationWarning,
       
    11          stacklevel=3,
       
    12      )
       
    13 -
       
    14 -
       
    15 -deprecated()