Skip to content

Commit

Permalink
Fix processors profiling (wrong end query time calculation)
Browse files Browse the repository at this point in the history
  • Loading branch information
azat committed May 26, 2024
1 parent 5f43fe6 commit 6e1c0cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/processes_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ impl ProcessesView {
.unwrap();

if let Some(max) = max_query_end_microseconds {
if query_end_time_microseconds < max {
if query_end_time_microseconds > max {
max_query_end_microseconds = Some(query_end_time_microseconds);
}
} else {
Expand Down

0 comments on commit 6e1c0cf

Please sign in to comment.