Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
feymartynov committed Oct 8, 2020
1 parent 554bbc8 commit 7a47280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/janus/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl Client {
state = state
.into_iter()
.filter(|(corr_data, info)| {
if info.start_timestamp + info.timeout > Utc::now() {
if info.start_timestamp + info.timeout < Utc::now() {
let msg =
format!("Janus request timed out ({}): {:?}", corr_data, info);

Expand Down

0 comments on commit 7a47280

Please sign in to comment.