Jonarod
Jonarod
After some headaches trying to pinpoint some bug in my app, I came to the same conclusion. Sending or editing messages through [grammers_client::client::client::Client.edit_message()](https://docs.rs/grammers-client/latest/grammers_client/client/client/struct.Client.html#method.edit_message) for example, works for "some time" and...
Wouldn't `Result` return an `Error` if we try to `Client.send_message()` with a disconnected client? Unfortunately I just activated TRACE logs for grammers specifically only yesterday, so I will post TRACE...
Ok so here are the logs after freeze: ```zsh [2024-06-22T13:20:03Z DEBUG my_app::forwarders::telegram_forwarder] Sending new message to Telegram [2024-06-22T13:20:03Z DEBUG grammers_mtsender] enqueueing request messages.sendMessage to be serialized [2024-06-22T13:20:03Z TRACE grammers_mtsender] reading...
Yeah maybe a bumpy network who knows really. However my app basically listens to a remote websocket with one `tokio::task` using `tokio_tungstenite` and another `tokio::task` is responsible to receive some...
Ok so I deployed the change with the revision [c860631](https://github.com/Lonami/grammers/commit/c860631280772ee85cceac388b2f8f7f67586600). Now I can see actual `Result` being returned, which is a lot more normal now. Thanks. However, I am still...
Or I was thinking, is it possible that Telegram's MT Proto API itself implements some kind of timeout to cut long lived inactive connections? If that is the case, is...
I see. Thanks for your insights. Just a note, after 5 days running and re-reunning my project, I have reached to the conclusion that `grammers` stops sending messages after 60...
I thought maybe it was due to incompatible versions between the main branch and the examples, but I have the same issue after downloading the [0.13.2 release](https://github.com/tracel-ai/burn/archive/refs/tags/v0.13.2.zip) out-of-the-box then `cd...
Reproduction steps: ```zsh # Clone repo git clone [email protected]:tracel-ai/burn.git # get into repo cd burn # Change cubecl dependency to revision that include the suggested bugfix (https://github.com/tracel-ai/cubecl/commit/32feabc5140170d45d4365a56106db930ed79a33) # For reproduction...
Worked like a charm. Thanks for your help. I submitted corresponding [PR](#2158) that should solve this issue. If you read this while PR is not merged to main, basically the...