You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes atlas server goes down (503 mainly), which makes it impossible to identify whether the entity not found (404) or server is down.
Consider the following example :
entity=client.entity_unique_attribute('hive_table', qualifiedName=atlas_qn)
ifentity.entityisNone:
print("I dont know what happened, could be missing or server down")
The text was updated successfully, but these errors were encountered:
Although I really like the good custom exceptions created in exceptions.py and the romantic one liner
Yet it is not useful as per the following lines
atlasclient/atlasclient/base.py
Lines 622 to 624 in 02b3e7d
Sometimes atlas server goes down (503 mainly), which makes it impossible to identify whether the entity not found (404) or server is down.
Consider the following example :
The text was updated successfully, but these errors were encountered: