Skip to content

Commit 5fc6ef9

Browse files
committed
Update rand requirement from 0.9 to 0.10
1 parent 30853b7 commit 5fc6ef9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/common/ci.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use std::time::{Duration, Instant};
44
pub fn init() {
55
let _ = std::thread::spawn(|| {
66
// exit after 600 seconds, just for CI
7-
let sleep_time = Duration::from_secs(600);
7+
let sleep_time = Duration::from_mins(10);
88
let start_time = Instant::now();
99
std::thread::sleep(sleep_time);
1010
let cost = Instant::now().saturating_duration_since(start_time);

0 commit comments

Comments
 (0)