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
MaxRetryError: HTTPSConnectionPool(host='#####', port=443): Max retries exceeded with url: /api/atlas/v2/search/advanced (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED]
If you encounter this error below you need to adjust add verify parameter for the post and delete calls to false in the client python script. So it looks something like:- deleteEntity = requests.delete( atlas_endpoint, headers=self.authentication.get_authentication_headers(), verify=False) results = self._handle_response(deleteEntity)
This will throw relevant warning but work.
The text was updated successfully, but these errors were encountered:
MaxRetryError: HTTPSConnectionPool(host='#####', port=443): Max retries exceeded with url: /api/atlas/v2/search/advanced (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED]
If you encounter this error below you need to adjust add verify parameter for the post and delete calls to false in the client python script. So it looks something like:-
deleteEntity = requests.delete(
atlas_endpoint,
headers=self.authentication.get_authentication_headers(),
verify=False)
results = self._handle_response(deleteEntity)
This will throw relevant warning but work.
The text was updated successfully, but these errors were encountered: