Fixes variable usage for api reconnect method. (#26553)

This commit is contained in:
Tim Rupp 2017-07-10 10:41:07 -07:00 committed by John R Barker
commit c0fc79647a

View file

@ -292,7 +292,7 @@ class AnsibleF5Client(object):
:return: :return:
:raises iControlUnexpectedHTTPError :raises iControlUnexpectedHTTPError
""" """
self.client.api = self._get_mgmt_root( self.api = self._get_mgmt_root(
self.f5_product_name, **self._connect_params self.f5_product_name, **self._connect_params
) )