Skip to content

Commit

Permalink
Cosmetics
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Dec 2, 2024
1 parent 3118472 commit 579f730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ pub fn declare_exchange(
let exchange_type = command_args
.get_one::<String>("type")
.map(|s| Into::<rabbitmq_http_client::commons::ExchangeType>::into(s.as_str()))
.unwrap_or(rabbitmq_http_client::commons::ExchangeType::Direct);
.unwrap_or(commons::ExchangeType::Direct);
let durable = command_args.get_one::<bool>("durable").unwrap_or(&true);
let auto_delete = command_args
.get_one::<bool>("auto_delete")
Expand Down

0 comments on commit 579f730

Please sign in to comment.