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
If the endpoint passed is malformed in some way, e.g. the https:// is chopped off, we get a cryptic message raised from azure.core :
File "C:\Users\krpratic\azure-sdk-for-python\env\lib\site-packages\azure\core\pipeline\transport\_base.py", line 695, in format_url
base = self._base_url.format(**kwargs).rstrip("/")
KeyError: 'Endpoint'
KeyError should be raised with a better error message, e.g., like:
‘Failed to make service call. Did not understand the endpoint passed in: {some broken endpoint}. Please ensure that it is a valid URL’.
The text was updated successfully, but these errors were encountered:
In reference to this issue: #9521
If the endpoint passed is malformed in some way, e.g. the https:// is chopped off, we get a cryptic message raised from azure.core :
KeyError should be raised with a better error message, e.g., like:
The text was updated successfully, but these errors were encountered: