Skip to content

Commit

Permalink
fix bug: adding back prefix in service group creation
Browse files Browse the repository at this point in the history
  • Loading branch information
rexf committed Nov 5, 2024
1 parent 21ea5ca commit 169206b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async-nats/src/service/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ impl Group {
queue_group: Z,
) -> Group {
Group {
prefix: prefix.to_string(),
prefix: format!("{}.{}", self.prefix.to_string(), prefix.to_string()),
stats: self.stats.clone(),
client: self.client.clone(),
shutdown_tx: self.shutdown_tx.clone(),
Expand Down

0 comments on commit 169206b

Please sign in to comment.