tortoise icon indicating copy to clipboard operation
tortoise copied to clipboard

A MQTT Client written in Elixir

Results 36 tortoise issues
Sort by recently updated
recently updated
newest added

Hi, thanks for making this package available to everyone. I'd like your help to know what to do when my downstream service can't keep up with the rate of incoming...

Hi All, I'm trying to run a sample program using the following code: ``` {ok, _pid} = Tortoise.Connection.start_link( client_id: HelloWorld, server: {Tortoise.Transport.Tcp, host: "localhost", port: 1883}, handler: {Tortoise.Handler.Logger, []} )...

The error occurred while using Tortoise on a very slow connection. ``` ** (FunctionClauseError) no function clause matching in Tortoise.Connection.handle_info/2 (tortoise 0.9.6) lib/tortoise/connection.ex:381: Tortoise.Connection.handle_info({{Tortoise, "SRH181700008"}, #Reference, %{error: [], ok: [{"SRH181700008/networks/+/cmd",...

The Option `clean_session` is already implemented, but always set to `true`. This PR adds 2 lines to be able to set `clean_session` as `false` with `connection_options`. Unfortunately I can't run...

List of changes: - Ensure doc generation in dev env - Use common source url - Add changelog link to hex module info - Bump Elixir to 1.7 for ex_doc...

Hi @gausby, I know that you moved on to other projects, and I want to be respectful to all of the good work that you've done with `tortoise`. How would...

Seems to be when making multiple subscribe requests, sometimes tortoise `Tortoise.Connection.subscribe_sync` function will timeout, and there doesn't appear to be any good reason for it doing so. Retrying the failed...

A second/redundant call to Tortoise.Connection.disconnect/1 creates all kinds of heartache. I tried to inline the two lines of code that make up this API: ``` connection_pid = Tortoise.Connection.via_name(connection_id) |> IO.inspect(label:...

(I'd love to ask questions on the elixir-lang#tortoise slack channel, but that seems pretty dead) This question probably shows my naivety with OTP as much as anything. I'm using the...