Skip to content

Commit

Permalink
refactor(rust): fix the deletion of a project
Browse files Browse the repository at this point in the history
  • Loading branch information
etorreborre committed Sep 29, 2023
1 parent c2fd91f commit f963080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementations/rust/ockam/ockam_api/src/cloud/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ impl Projects for Controller {
trace!(target: TARGET, %space_id, %project_id, "deleting project");
let req = Request::delete(format!("/v0/{space_id}/{project_id}"));
self.0
.ask(ctx, "projects", req)
.tell(ctx, "projects", req)
.await
.into_diagnostic()?
.success()
Expand Down

0 comments on commit f963080

Please sign in to comment.