Fix connection error reporting (#40758)

The variables used for reporting errors were incorrect. Additionally,
the fetching of connection related params was using an old format.
This commit is contained in:
Tim Rupp 2018-05-26 17:23:38 -07:00 committed by GitHub
commit dc08bca1fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 16 deletions

View file

@ -37,7 +37,7 @@ class F5Client(F5BaseClient):
if self._client:
return self._client
for x in range(0, 60):
for x in range(0, 10):
try:
result = ManagementRoot(
self.provider['server'],
@ -53,7 +53,7 @@ class F5Client(F5BaseClient):
exc = ex
time.sleep(1)
error = 'Unable to connect to {0} on port {1}.'.format(
self.params['server'], self.params['server_port']
self.provider['server'], self.provider['server_port']
)
if exc is not None:
@ -71,7 +71,6 @@ class F5RestClient(F5BaseClient):
exc = None
if self._client:
return self._client
for x in range(0, 10):
try:
url = "https://{0}:{1}/mgmt/shared/authn/login".format(