I can set the netty3 and netty4 workers when running my Finatra server via
sbt "run -com.twitter.finagle.netty3.numWorkers=1 -com.twitter.finagle.netty4.numWorkers=1"
How do I set these values when running my Finatra FeatureTest tests? I tried:
sbt "test -com.twitter.finagle.netty3.numWorkers=1 -com.twitter.finagle.netty4.numWorkers=1"
which fails with:
[error] No valid parser available.
I tried using System.setProperty as well without success (I've found out why this doesn't work in another thread somewhere).
I will need these values set when the tests run during assembly as well.
Thanks in advance.
--
You received this message because you are subscribed to the Google Groups "finatra-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to finatra-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thanks again,
- Adam