Merge "Deprecate the baseclient.Client"
This commit is contained in:
@@ -10,10 +10,17 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
|
||||||
class Client(object):
|
class Client(object):
|
||||||
|
|
||||||
def __init__(self, session):
|
def __init__(self, session):
|
||||||
|
warnings.warn(
|
||||||
|
'keystoneclient.baseclient.Client is deprecated as of the 2.1.0 '
|
||||||
|
'release. It will be removed in future releases.',
|
||||||
|
DeprecationWarning)
|
||||||
|
|
||||||
self.session = session
|
self.session = session
|
||||||
|
|
||||||
def request(self, url, method, **kwargs):
|
def request(self, url, method, **kwargs):
|
||||||
|
@@ -379,7 +379,7 @@ class HTTPClient(baseclient.Client, base.BaseAuthPlugin):
|
|||||||
session = client_session.Session._construct(kwargs)
|
session = client_session.Session._construct(kwargs)
|
||||||
session.auth = self
|
session.auth = self
|
||||||
|
|
||||||
super(HTTPClient, self).__init__(session=session)
|
self.session = session
|
||||||
self.domain = ''
|
self.domain = ''
|
||||||
self.debug_log = debug
|
self.debug_log = debug
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user