Skip to content

Commit

Permalink
remove broken test from stress test
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-besch committed Jan 26, 2024
1 parent 4ded5b3 commit c13f0fd
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions dind_test_driver/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use logdna_mock::{make_panic_exit, mock_server, TestCfg, TestType};
use std::{net::SocketAddr, time::Duration};
use tokio::process::Command;

const CONTAINER_AMOUNT: usize = 10;
const CONTAINER_AMOUNT: usize = 20;
const LINES_PER_SEC: f64 = 500.0;
const LINES_AMOUNT: usize = 10000;
const MAX_SLOW_STREAK: u64 = 0;
Expand Down Expand Up @@ -109,16 +109,3 @@ async fn start_client_server_pair(i: usize) {

assert_eq!(return_status.code(), Some(0));
}

// async fn test() {
// Command::new("journalctl")
// .arg("--user")
// .arg("-fu")
// .arg("docker.service")
// .arg("--no-pager")
// .spawn()
// .unwrap()
// .wait_with_output()
// .await
// .unwrap();
// }

0 comments on commit c13f0fd

Please sign in to comment.