Skip to content

Commit

Permalink
fix: extend generation timeout to 120s
Browse files Browse the repository at this point in the history
  • Loading branch information
mosure committed Sep 11, 2024
1 parent 52e212c commit bad9ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ fn next(
let sample_receiver = SAMPLE_RECEIVER.get().unwrap();
let sample_receiver = sample_receiver.lock().unwrap();

let timeout = Duration::from_secs(30);
let timeout = Duration::from_secs(120);

match sample_receiver.recv_timeout(timeout) {
Ok(sample) => Ok(sample),
Expand Down

0 comments on commit bad9ecb

Please sign in to comment.