Skip to content

Commit

Permalink
reduce sleep time of the fuzzy thread to 30ms
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Sep 15, 2024
1 parent 2dd496c commit efcdb1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oryx-tui/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impl App {
let mut last_index = 0;
let mut pattern = String::new();
loop {
thread::sleep(Duration::from_millis(100));
thread::sleep(Duration::from_millis(30));
let packets = packets.lock().unwrap();
let mut fuzzy = fuzzy.lock().unwrap();

Expand Down

0 comments on commit efcdb1a

Please sign in to comment.