Github user HeartSaVioR commented on the pull request:
https://github.com/apache/storm/pull/540#issuecomment-97436721
Build is failed from ZkCoordinatorTest.
You should also provide Config.STORM_ZOOKEEPER_CONNECTION_TIMEOUT from
ZkCoordinatorTest to let build passed.
```
private Map buildZookeeperConfig(TestingServer server) {
Map conf = new HashMap();
conf.put(Config.TRANSACTIONAL_ZOOKEEPER_PORT, server.getPort());
conf.put(Config.TRANSACTIONAL_ZOOKEEPER_SERVERS,
Arrays.asList("localhost"));
conf.put(Config.STORM_ZOOKEEPER_SESSION_TIMEOUT, 20000);
conf.put(Config.STORM_ZOOKEEPER_RETRY_TIMES, 3);
conf.put(Config.STORM_ZOOKEEPER_RETRY_INTERVAL, 30);
return conf;
}
```
I recommend you to run tests from dev. machine at least once before posting
PR.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---