Merge pull request #36 from zhaofengli/flush-cout

Flush cout after each output line
This commit is contained in:
Jörg Thalheim 2022-02-16 15:34:36 +00:00 committed by GitHub
commit 7e6e48a428
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -404,7 +404,7 @@ int main(int argc, char * * argv)
} }
} else { } else {
auto state(state_.lock()); auto state(state_.lock());
std::cout << respString << "\n"; std::cout << respString << "\n" << std::flush;
} }
/* Add newly discovered job names to the queue. */ /* Add newly discovered job names to the queue. */