We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4c374d8 + 15aa431 commit e5cd461Copy full SHA for e5cd461
threescale_api/resources.py
@@ -1110,7 +1110,9 @@ def wait_tenant_ready(self) -> bool:
1110
"""
1111
When True is returned, there is some chance the tenant is actually ready.
1112
1113
- return self.admin_api().wait_for_tenant()
+ # Ignore ssl, this is about checking whether the initialization has
1114
+ # been finished.
1115
+ return self.admin_api(ssl_verify=False).wait_for_tenant()
1116
1117
def admin_api(self, ssl_verify=True, wait=-1) -> 'client.ThreeScaleClient':
1118
0 commit comments