Minor fixes after review.

This commit is contained in:
Jonas Boner 2013-05-21 09:05:40 +02:00
parent 33407e39de
commit 5d524872c7
3 changed files with 16 additions and 23 deletions

View file

@ -45,7 +45,7 @@ object DistributedPubSubMediatorSpec extends MultiNodeConfig {
def receive = {
case Whisper(path, msg) mediator ! Send(path, msg, localAffinity = true)
case Talk(path, msg) mediator ! SendToAll(path, msg)
case TalkToOthers(path, msg) mediator ! SendToAll(path, msg, skipSenderNode = true)
case TalkToOthers(path, msg) mediator ! SendToAll(path, msg, allButSelf = true)
case Shout(topic, msg) mediator ! Publish(topic, msg)
case msg testActor ! msg
}