We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81af270 commit a48878cCopy full SHA for a48878c
1 file changed
agent/src/common/l7_protocol_log.rs
@@ -352,13 +352,13 @@ impl LogCache {
352
pub fn is_request_of(&self, other: &Self) -> bool {
353
self.msg_type == LogMessageType::Request
354
&& other.msg_type == LogMessageType::Response
355
- && self.time < other.time
+ && self.time <= other.time
356
}
357
358
pub fn is_response_of(&self, other: &Self) -> bool {
359
self.msg_type == LogMessageType::Response
360
&& other.msg_type == LogMessageType::Request
361
- && self.time > other.time
+ && self.time >= other.time
362
363
364
0 commit comments