Skip to content

Commit

Permalink
Remove unnecessary clone
Browse files Browse the repository at this point in the history
  • Loading branch information
karolisg committed Sep 22, 2023
1 parent 0b6a6dc commit 214354e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dozer-cli/src/simple/cloud/deployer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async fn print_progress(
info!("Deployment completed successfully");
info!("You can get API requests samples with `dozer cloud api-request-samples`");

CloudAppContext::save_app_id(app_id.clone())?;
CloudAppContext::save_app_id(app_id)?;

break;
} else if response.status == DeploymentStatus::Failed as i32 {
Expand Down

0 comments on commit 214354e

Please sign in to comment.