Gary Rennie

Results 11 issues of Gary Rennie

The timeout used for a request which uses `cowboy_req:inform/3` has changed from 5s (request_timeout) to 60s (idle_timeout) between cowboy 2.7.0 and 2.8.0 I believe the incorrect timeout value is being...

This example uses SSL as it is required in most browsers for server push.

Feature request

Currently to read the body in an async way, you nave to do something like: ```erlang loop(Req=#state{pid=Pid, streamid=StreamID}, State) -> Ref = make_ref(), Pid ! {{Pid, StreamID}, {read_body, Ref, 8,...

Feature request

I didn't fill out the issue template because this isn't really related to the build specifically. ------ One issue I ran into whilst running builds for testing, was hitting the...

bug

Given the following code snippet: ```erlang gun:open(Host, Port, #{}) gun:ws_upgrade(Pid, Url, [], #{keepalive=> infinity}) ``` The keepalive continues to use the default value, and a keepalive is sent after 5...

Currently the storage expects a `url` function to generate the URL which points to the uploaded file. However, there is no way to fetch an asset from the uploaded location....

The console table reporter will output a table to the console in the format: ``` +--------------------------------------------+ | vm.memory | +-------------+------------+----------+------+ | Measurement | Type | Value | Tags | +-------------+------------+----------+------+...

After using hackney with cowboy, it appears that inform responses are not supported, and that hackney is awaiting further data even though the response has been sent. A sample repository...

bug
coming soon

Previously, it was only possible to `{:halt, redirect}` or `{:cont, socket}` in a mount hook. This commit adds the ability to use halt if render_with has been specified. When both...

When using an in memory database, if the a process that performs a query crashes, then the database is destroyed. This could potentially be avoided by isolating the process that...