in ManagedkdbInsights/torq/managed_kx.py [0:0]
def wait_for_environment_status(client, environmentId:str, status: str='CREATED', sleep_sec=10, max_wait_sec=1200, show_wait=False):
if environmentId is None:
environmentId = get_kx_environment_id(client)
"""
Function polls until environment is in desired status
"""
total_wait = 0
while True and total_wait < max_wait_sec:
resp = get_kx_environment(client, environmentId=environmentId)
if resp is None:
print(f"Environment: {environmentId} does not exist")
continue
a_status = resp.get('status')
if a_status is None:
print("status is None, returning")
return resp
if a_status.upper() == "FAILED_CREATION":
print(f"Failed, total wait {datetime.timedelta(seconds=total_wait)}")
error_info = resp.get('errorInfo', None)
if error_info is not None:
print(f"Type: {error_info.get('errorType', '')}")
print(f"Message: {error_info.get('errorMessage', '')}")
print(error_info)
else:
print(resp)
return None
elif a_status.upper() != status.upper():
if show_wait:
print(f"Status is {a_status}, total wait {datetime.timedelta(seconds=total_wait)}, waiting {sleep_sec} sec ...")
time.sleep(sleep_sec)
total_wait = total_wait + sleep_sec
continue
else:
return resp
return None