Skip to content

Commit

Permalink
Merge branch 'master' into wait_for_tenant-logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Marian Ganisin authored Jul 7, 2022
2 parents 2d738aa + e5cd461 commit b4d406f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion threescale_api/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,9 @@ def wait_tenant_ready(self) -> bool:
"""
When True is returned, there is some chance the tenant is actually ready.
"""
return self.admin_api().wait_for_tenant()
# Ignore ssl, this is about checking whether the initialization has
# been finished.
return self.admin_api(ssl_verify=False).wait_for_tenant()

def admin_api(self, ssl_verify=True, wait=-1) -> 'client.ThreeScaleClient':
"""
Expand Down

0 comments on commit b4d406f

Please sign in to comment.