Smertig / banana

🍌 Modern C++ Telegram Bot API library
https://smertig.github.io/banana/master
MIT License
41 stars 4 forks source link

Fix async_read timeout in Boost.Beast agent #19

Closed UltraCoderRU closed 1 year ago

UltraCoderRU commented 1 year ago

Timeout set before async_write was not reset before async_read, so it limited maximum long-poll timeout to 30 seconds. Telegram long-polling seems to support timeout for up to 50 seconds, so I set async_read timeout to 60 seconds.

UltraCoderRU commented 1 year ago

Fixed the same problem for blocking agent.

Smertig commented 1 year ago

LGTM, merged. Thank you!