[Live test results.](https://gist.github.com/devcsrj/828e5be44a54f5217cbd/088324b581f7f528144fc43d2c42cb1f529d60fb) `Tests run: 25, Failures: 5, Errors: 0, Skipped: 11` Weirdly enough, when doing debug mode (adding `-Dmaven.surefire.debug` and breakpoint at [testGet](https://github.com/jclouds/jclouds/blob/master/compute/src/test/java/org/jclouds/compute/internal/BaseComputeServiceLiveTest.java#L521)) the test doesn't stop, as opposed from previous comment.)
As it turns out, it's not possible to concurrently execute methods in a datacenter. (i.e.: when using `client.rebootNodesMatching(..)`, other nodes would actually fail to receive the request because the API complains that a `PROVISIONING_IN_PROCESS`.) Need to refactor `ProfitBricksComputeServiceAdapter` to use a single-thread worker per datacenter approach. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/145#issuecomment-103782440
