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
The host and path must refer to a cowboy app, also include a query parameter. The request will be processed but the fusco:request will return a {error,status_line}. Some digging revealed it was because no match could be found on fusco_protocol:decode_status_line causing it to return this.
To recreate start a shell (with fusco in code path) and run
{ok, Client} = fusco:start_link("http://127.0.0.1:8085", []).
fusco:request(Client, <<"/http_response?response_status=200">>, "GET", [], [], 1, 10000).
The host and path must refer to a cowboy app, also include a query parameter. The request will be processed but the fusco:request will return a {error,status_line}. Some digging revealed it was because no match could be found on fusco_protocol:decode_status_line causing it to return this.
Investigate what caused this and also see if this could apply to other web servers.
The text was updated successfully, but these errors were encountered: