1
0

reduce time to pull down to 1 second

This commit is contained in:
Emagi 2024-12-02 20:15:34 -05:00
parent 405e43f672
commit a54cb78427

View File

@ -639,7 +639,7 @@ ThreadReturnType StartPeerPoll (void* tmp)
{ {
LogWrite(WORLD__WARNING, 0, "Thread", "Start Polling..."); LogWrite(WORLD__WARNING, 0, "Thread", "Start Polling...");
peer_https_pool.startPolling(); peer_https_pool.startPolling();
std::this_thread::sleep_for(std::chrono::milliseconds(500)); std::this_thread::sleep_for(std::chrono::milliseconds(1000));
} }
THREAD_RETURN(NULL); THREAD_RETURN(NULL);
} }