File tree Expand file tree Collapse file tree
core/src/server/request/impl Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ bool IsClockSkewAcceptable(
3838 }
3939
4040 if (skew_ms > threshold) {
41- LOG_LIMITED_WARNING ()
41+ LOG_LIMITED_INFO ()
4242 << " Clock skew detected: " << skew_ms << " , threshold: " << threshold
4343 << " . Falling back to duration-based deadline propagation" ;
4444 return false ;
@@ -57,7 +57,7 @@ std::optional<TaskInheritedOriginalDeadline> ParseXRequestDeadlineString(const s
5757 const auto timestamp = utils::datetime::UtcStringtime (timestring, utils::datetime::kAbsoluteDeadlineFormat );
5858 return std::chrono::time_point_cast<std::chrono::microseconds>(timestamp);
5959 } catch (const std::exception& exception) {
60- LOG_LIMITED_WARNING () << " Can't parse X-Request-Deadline: " << exception.what ();
60+ LOG_LIMITED_INFO () << " Can't parse X-Request-Deadline: " << exception.what ();
6161 return std::nullopt ;
6262 }
6363}
You can’t perform that action at this time.
0 commit comments