Skip to content

Commit

Permalink
fix throttle
Browse files Browse the repository at this point in the history
  • Loading branch information
yezizp2012 committed Sep 29, 2024
1 parent d1a8c5e commit fba64a8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/tests/simulation/tests/integration_tests/throttle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@ async fn test_throttle_mv() {
.await
.unwrap();
let mv_id: u32 = res.parse().unwrap();
cluster
.throttle_mv(TableId::from(mv_id), Some(200))
.await
.unwrap();
cluster
.throttle_mv(TableId::from(mv_id), None)
.await
.unwrap();

session.run("drop table t1 cascade").await.unwrap();
}

0 comments on commit fba64a8

Please sign in to comment.