Skip to content

Commit

Permalink
Adjust comparison for timestamps
Browse files Browse the repository at this point in the history
  • Loading branch information
marioCluml committed Nov 2, 2023
1 parent 85d17c7 commit 9287e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphql/outlier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ where
let end = time.end;
if let Some(start) = start {
if let Some(end) = end {
if node.timestamp <= start.timestamp_nanos_opt().unwrap_or_default()
if node.timestamp < start.timestamp_nanos_opt().unwrap_or_default()
|| node.timestamp > end.timestamp_nanos_opt().unwrap_or_default()
{
continue;
Expand Down

0 comments on commit 9287e50

Please sign in to comment.