Skip to content

Commit

Permalink
Revise how running container is stopped
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymarianne committed Nov 16, 2021
1 parent 269ccc6 commit b5bf886
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/infrastructure/verification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ impl VerificationStepRunner<Result<HashMap<String, String>, Report>>
async fn stop_running(&self) -> Result<HashMap<String, String>, Report> {
let project_step = self.step_in_verification_plan();

let client = self.container_api_client();

client.stop_container(project_step).await?;
self.container_api_client
.stop_container(project_step)
.await?;

let mut message = HashMap::<String, String>::new();

Expand Down

0 comments on commit b5bf886

Please sign in to comment.