Navigation Menu

Skip to content

Commit

Permalink
Don't share a single channel for every singleton.
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias committed Oct 6, 2015
1 parent 65c352e commit 5b1cd18
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -43,7 +43,7 @@ public SingletonClusterParticipant(String name) {
@Override
public synchronized void connect() {
if (this.channelWrapper == null) {
this.channelWrapper = WunderBoss.findOrCreateComponent(ChannelWrapper.class);
this.channelWrapper = WunderBoss.findOrCreateComponent(ChannelWrapper.class, this.name, null);
try {
this.channelWrapper.start();
} catch (Exception e) {
Expand Down

0 comments on commit 5b1cd18

Please sign in to comment.