Skip to content

Commit

Permalink
reduce DCM poll interval
Browse files Browse the repository at this point in the history
  • Loading branch information
hunhoffe committed Oct 1, 2023
1 parent d3f73d1 commit 0ea99b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/testutils/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ pub fn spawn_dcm(r: usize) -> Result<rexpect::session::PtySession> {

// Set a short poll interval
dcm_args.push("-p".to_string());
dcm_args.push(format!("{}", 5));
dcm_args.push(format!("{}", 1));

// Start DCM
let cmd = format!(
Expand Down

0 comments on commit 0ea99b6

Please sign in to comment.