feature/Producer #3

Merged
unai merged 6 commits from feature/Producer into main 2026-03-10 17:34:18 +00:00
Showing only changes of commit 928bb5a5fb - Show all commits

View File

@ -22,7 +22,7 @@ TEST(ProducerTest, ProducerCallsBackWhenEnabled)
[&logs](const std::string& msg) { logs.push_back(msg); }};
// Act: initialize producer and stop it.
producer.start();
std::this_thread::sleep_for(std::chrono::milliseconds(1500));
std::this_thread::sleep_for(std::chrono::milliseconds(1));
producer.stop();
// Assert: we expect one output being 42