Skip to content

Commit

Permalink
Remove docker-api dep + simplify DockerCompose impl (#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai committed Nov 18, 2022
1 parent 65066c2 commit 9d54492
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 263 deletions.
228 changes: 4 additions & 224 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -279,9 +279,9 @@ pub async fn test_node_going_down(
// stop one of the containers to trigger a status change event.
// event_connection_direct is connecting to cassandra-one, so make sure to instead kill caassandra-two.
if kill {
compose.kill_service("cassandra-two").await;
compose.kill_service("cassandra-two");
} else {
compose.stop_service("cassandra-two").await;
compose.stop_service("cassandra-two");
}

loop {
Expand Down
1 change: 0 additions & 1 deletion test-helpers/Cargo.toml
Expand Up @@ -13,4 +13,3 @@ subprocess = "0.2.7"
anyhow = "1.0.42"
nix = "0.25.0"
rcgen = "0.10.0"
docker-api = "0.12.0"

0 comments on commit 9d54492

Please sign in to comment.