Skip to content

Commit

Permalink
Merge branch 'kwannoel/debug-deterministic-test' into kwannoel/use-ra…
Browse files Browse the repository at this point in the history
…te-limit
  • Loading branch information
kwannoel committed Oct 31, 2023
2 parents 5c9513b + 28b4d4d commit f427a27
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/tests/simulation/tests/integration_tests/sink/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async fn basic_test_inner(is_decouple: bool) -> Result<()> {
let mut cluster = start_sink_test_cluster().await?;

let test_sink = SimulationTestSink::register_new();
let test_source = SimulationTestSource::register_new(12, 0..500000, 0.2, 50);
let test_source = SimulationTestSource::register_new(6, 0..100000, 0.2, 20);

let mut session = cluster.start_session();

Expand Down Expand Up @@ -72,7 +72,7 @@ async fn test_sink_decouple_basic() -> Result<()> {
async fn test_sink_decouple_blackhole() -> Result<()> {
let mut cluster = start_sink_test_cluster().await?;

let test_source = SimulationTestSource::register_new(12, 0..500000, 0.2, 50);
let test_source = SimulationTestSource::register_new(6, 0..100000, 0.2, 20);

let mut session = cluster.start_session();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ async fn recovery_test_inner(is_decouple: bool) -> Result<()> {
let mut cluster = start_sink_test_cluster().await?;

let test_sink = SimulationTestSink::register_new();
let test_source = SimulationTestSource::register_new(12, 0..500000, 0.2, 50);
let test_source = SimulationTestSource::register_new(6, 0..100000, 0.2, 20);

let mut session = cluster.start_session();

Expand Down
2 changes: 1 addition & 1 deletion src/tests/simulation/tests/integration_tests/sink/scale.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async fn scale_test_inner(is_decouple: bool) -> Result<()> {
let mut cluster = start_sink_test_cluster().await?;

let test_sink = SimulationTestSink::register_new();
let test_source = SimulationTestSource::register_new(12, 0..500000, 0.2, 20);
let test_source = SimulationTestSource::register_new(6, 0..100000, 0.2, 20);

let mut session = cluster.start_session();

Expand Down

0 comments on commit f427a27

Please sign in to comment.