Add content-type to ERROR frames.
This commit is contained in:
parent
28d74ac382
commit
edba0d0732
|
|
@ -276,7 +276,8 @@ send_frame(Command, Headers, Body, State) ->
|
||||||
send_error(Message, Detail, State) ->
|
send_error(Message, Detail, State) ->
|
||||||
error_logger:error_msg("STOMP error frame sent:~nMessage: ~p~nDetail: ~p~n",
|
error_logger:error_msg("STOMP error frame sent:~nMessage: ~p~nDetail: ~p~n",
|
||||||
[Message, Detail]),
|
[Message, Detail]),
|
||||||
send_frame("ERROR", [{"message", Message}], Detail, State).
|
send_frame("ERROR", [{"message", Message},
|
||||||
|
{"content-type", "text/plain"}], Detail, State).
|
||||||
|
|
||||||
send_error(Message, Format, Args, State) ->
|
send_error(Message, Format, Args, State) ->
|
||||||
send_error(Message, lists:flatten(io_lib:format(Format, Args)), State).
|
send_error(Message, lists:flatten(io_lib:format(Format, Args)), State).
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue