Skip to content

Commit e7703ff

Browse files
author
lexeyo
committed
cc core/server/http/test: cleanup logged string
commit_hash:3814dd1bc9584a3928b595aeaccc552b32f0c524
1 parent 99f7071 commit e7703ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/functional_tests/graceful_shutdown/delaying_handler.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class DelayingServerHandler final : public server::handlers::HttpHandlerBase {
2121
const auto& delay_arg = request.GetArg("delay");
2222
const auto delay = !delay_arg.empty() ? utils::StringToDuration(delay_arg) : std::chrono::milliseconds::zero();
2323
if (delay > std::chrono::milliseconds::zero()) {
24-
LOG_INFO() << "Delaying response for " << delay << " ms";
24+
LOG_INFO() << "Delaying response for " << delay;
2525
engine::InterruptibleSleepFor(delay);
2626
}
2727
return "OK";

0 commit comments

Comments
 (0)