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
When I was trying to find the culprit in ex_azure I realized it simply just calls handle_call({put_blob, Container, Name, Type = block_blob, Data, Options}, _From, State) -> from erlazure.
The issue is that Azure returns the XML error, but there is no graceful failure of it. It simply makes the GenServer to fail... I would probably except that an error tuple with the error message is returned.
The text was updated successfully, but these errors were encountered:
I am using erlazure via ex_azure and the call to
put_blob
fails with:When I was trying to find the culprit in ex_azure I realized it simply just calls
handle_call({put_blob, Container, Name, Type = block_blob, Data, Options}, _From, State) ->
from erlazure.The issue is that Azure returns the XML error, but there is no graceful failure of it. It simply makes the GenServer to fail... I would probably except that an error tuple with the error message is returned.
The text was updated successfully, but these errors were encountered: