Added 30-second delay on stream error
This commit is contained in:
parent
c6153d98e0
commit
95c9eea3df
|
@ -1,6 +1,6 @@
|
||||||
cmake_minimum_required (VERSION 3.7)
|
cmake_minimum_required (VERSION 3.7)
|
||||||
project (expandurl-mastodon
|
project (expandurl-mastodon
|
||||||
VERSION 0.6.4
|
VERSION 0.6.5
|
||||||
LANGUAGES CXX
|
LANGUAGES CXX
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -110,12 +110,19 @@ const void Listener::start()
|
||||||
{
|
{
|
||||||
_thread = std::thread([=]
|
_thread = std::thread([=]
|
||||||
{
|
{
|
||||||
|
std::uint_fast16_t ret = 0;
|
||||||
_running = true;
|
_running = true;
|
||||||
Easy masto(_instance, _access_token);
|
Easy masto(_instance, _access_token);
|
||||||
masto.set_useragent(static_cast<const string>("expandurl-mastodon/") +
|
masto.set_useragent(static_cast<const string>("expandurl-mastodon/") +
|
||||||
global::version);
|
global::version);
|
||||||
masto.get_stream(Mastodon::API::v1::streaming_user, _stream, _ptr);
|
ret = masto.get_stream(Mastodon::API::v1::streaming_user, _stream, _ptr);
|
||||||
syslog(LOG_DEBUG, "Connection lost.");
|
syslog(LOG_DEBUG, "Connection lost.");
|
||||||
|
if (ret != 0 && ret != 14) // 14 means canceled by user
|
||||||
|
{
|
||||||
|
syslog(LOG_ERR, "Connection terminated: Error %u", ret);
|
||||||
|
syslog(LOG_INFO, "Waiting for 30 seconds");
|
||||||
|
std::this_thread::sleep_for(std::chrono::seconds(30));
|
||||||
|
}
|
||||||
_running = false;
|
_running = false;
|
||||||
});
|
});
|
||||||
while (_ptr == nullptr)
|
while (_ptr == nullptr)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user