> @@ -63,6 +70,8 @@ protected void initialize() {
> }
>
> this.strategy =
> injector.getInstance(ListCookbookVersionsInEnvironmentImpl.class);
> + this.testExecutorService = Executors.newFixedThreadPool(5);
> + this.testListeningExecutorService =
> MoreExecutors.listeningDecorator(Executors.newFixedThreadPool(5));
[minor] Do we need two thread pools for this? Or could we also do
`MoreExecutors.listeningDecorator(testExecutorService);`
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-chef/pull/47/files#r15464672