ws cobra_subscribe / sleep 1s instead of 10ms in the main loop

This commit is contained in:
Benjamin Sergeant 2019-12-02 09:52:52 -08:00
parent f3f71314d9
commit 49865fed0a

View File

@ -99,7 +99,7 @@ namespace ix
while (true) while (true)
{ {
std::chrono::duration<double, std::milli> duration(10); auto duration = std::chrono::seconds(1);
std::this_thread::sleep_for(duration); std::this_thread::sleep_for(duration);
} }