File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ provides a Python API (the ``neutronclient`` module).
2020.. note :: This project has been deprecated. The CLI code has been deleted
2121 and is not accessible anymore. The Python bindings are still in use by
2222 other projects but no new features will be added to this project.
23+ All projects under Openstack governance migrating to use OpenstackSDK.
2324 Any new feature should be proposed to OpenStack SDK and OpenStack
2425 Client.
2526
Original file line number Diff line number Diff line change @@ -250,6 +250,9 @@ class ClientBase(object):
250250 def __init__ (self , ** kwargs ):
251251 """Initialize a new client for the Neutron v2.0 API."""
252252 super (ClientBase , self ).__init__ ()
253+ _logger .warning ("The python binding code in neutronclient is "
254+ "deprecated in favor of OpenstackSDK, please use "
255+ "that as this will be removed in a future release." )
253256 self .retries = kwargs .pop ('retries' , 0 )
254257 self .raise_errors = kwargs .pop ('raise_errors' , True )
255258 self .httpclient = client .construct_http_client (** kwargs )
You can’t perform that action at this time.
0 commit comments