>
> Any other ideas?
>

The same: you are providing the wrong path to the dispatcher configuration.
Configuration elements are nested, and correspond to paths. To set the
dispatcher any of the following works:

akka.cluster.use-dispatcher = <dispatcher-path>

or

akka.cluster {
  use-dispatcher = <dispatcher-path>
}

or

akka {
  cluster {
    use-dispatcher = <dispatcher-path>
  }
}

And of course the <dispatcher-path> have to point to the correct path,
which depends where did you put your dispatcher definition:

akka {
  cluster-dispatcher {...}
} // This will be akka.cluster-dispatcher

akka {
  cluster {
    cluster-dispatcher {...}
  }
}  // This will be akka.cluster.cluster-dispatcher

etc.

Unfortunately, in your configuration you have basically this:

akka {
cluster {
akka.cluster.use-dispatcher = cluster-dispatcher
cluster-dispatcher {...}
  }
}

Which is completely wrong, because

akka {
cluster {
* akka.cluster.use-dispatcher = cluster-dispatcher*
// the above line is actualy akka.cluster.akka.cluster.use-dispatcher
  }
}

and of course the path of the dispatcher would be
akka.cluster.cluster-dispatcher of course. I highly recommend to get
comfortable with the HOCON notation of Typesafe config:
https://github.com/typesafehub/config

-Endre


>
>
>
>
> Application.conf is added as attachment ..
>
>
>
> Regards,
>
> Hamid
>
>
>
>
>
>
> --
> >>>>>>>>>> Read the docs: http://akka.io/docs/
> >>>>>>>>>> Check the FAQ:
> http://doc.akka.io/docs/akka/current/additional/faq.html
> >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user
> ---
> You received this message because you are subscribed to the Google Groups
> "Akka User List" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/akka-user.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to