Hi, all, I just merged PR to develop that would change the default behavior of these rules. Now when you use LocatorStartupRule to start a locator, the http service won't be started by default (jmx manager will still be started be default). If your test needs http service, you will need to do the following
@Rule LocatorStartupRule locator = new LocatorStartupRule().withHttpService(); or @Rule ClusterStartupRule cluster = new ClusterStartupRule(); LocatorVM locator = cluster.startLocator(0, l->l.withHttpService()); -- Cheers Jinmei
