Skip to content

Commit

Permalink
Merge pull request #329 from uptane/listener-name
Browse files Browse the repository at this point in the history
Use explicit actorName in groupId prefix if provided
  • Loading branch information
simao committed Dec 7, 2023
2 parents a08b4ca + 526c5da commit e24e809
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ trait MessageListenerSupport {

val ref = system.actorOf(
MessageListener
.props[T](globalConfig, loggedOperation, groupId, busListenerMonitor),
.props[T](globalConfig, loggedOperation, groupId + actorNamePrefix.getOrElse(""), busListenerMonitor),
actorNamePrefix.getOrElse("") + ml.streamName + "-listener")
ref ! Subscribe
ref
Expand Down

0 comments on commit e24e809

Please sign in to comment.