We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f7071 commit e7703ffCopy full SHA for e7703ff
1 file changed
core/functional_tests/graceful_shutdown/delaying_handler.hpp
@@ -21,7 +21,7 @@ class DelayingServerHandler final : public server::handlers::HttpHandlerBase {
21
const auto& delay_arg = request.GetArg("delay");
22
const auto delay = !delay_arg.empty() ? utils::StringToDuration(delay_arg) : std::chrono::milliseconds::zero();
23
if (delay > std::chrono::milliseconds::zero()) {
24
- LOG_INFO() << "Delaying response for " << delay << " ms";
+ LOG_INFO() << "Delaying response for " << delay;
25
engine::InterruptibleSleepFor(delay);
26
}
27
return "OK";
0 commit comments