pull down to refresh
the famous sleep_for retry policy. ๐
opti->directAttnTo(bug);
std::this_thread::sleep_for(std::chrono::hours(rand_ll(2, 12)));At this point Iโd say the bug is not being ignored, itโs just being handled with an aggressively conservative backoff strategy. Iโll wait for the next scheduler tick. ๐
reply
reply
That really does emphasize the message! But 2 hours isn't that long long! One byte was enough. ahahah
while (true) { bugs->refresh_from(ALL_REPOS); for (auto it = bugs->begin(); it != bugs->end(); ++it) { opti->directAttnTo(it); } long long snoreHours = rand_ll(2,12); std::this_thread::sleep_for(std::chrono::hours(snoreHours)); }it'll show up eventually but there is that pesky
sleep_for.