ReactiveCouchbase / ReactiveCouchbase-core

Core library for ReactiveCouchbase
Apache License 2.0
64 stars 28 forks source link

execution context mismatch couchbase.actorctx instead of couchbase.akka #63

Open rajeshetty opened 9 years ago

rajeshetty commented 9 years ago

As per the documentation it says path to define exec context should be like this

couchbase { akka { timeout=1000 execution-context { fork-join-executor { parallelism-factor = 4.0 parallelism-max = 40 } } }

but when i don't define this in my app conf and when I print default configuration i see following couchbase { actorctx { timeout=1000 execution-context { fork-join-executor { parallelism-factor = 4.0 parallelism-max = 40 } } }

Notice node "actorctx" instead of "akka" . So the question 'couchbase.actorctx' taking an effect in defining execution context or we have to define 'couchbase.akka' ?