This is an automated email from the ASF dual-hosted git repository.
sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new d01cc75 Fix build issue in master (#2062)
d01cc75 is described below
commit d01cc7561cc9ff960e998b4c3e633a9cbbe51af3
Author: Sijie Guo <[email protected]>
AuthorDate: Mon Jul 2 02:32:46 2018 -0700
Fix build issue in master (#2062)
*Motivation*
merging apache/pulsar#2060 and apache/pulsar#2061 seems causing one method
being merged as duplicated method. it broke the master build.
*Changes*
removed duplicated method introduced after merging apache/pulsar#2060 and
apache/pulsar#2061
---
.../main/java/org/apache/pulsar/tests/topologies/PulsarCluster.java | 4 ----
1 file changed, 4 deletions(-)
diff --git
a/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/topologies/PulsarCluster.java
b/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/topologies/PulsarCluster.java
index 501606e..a721915 100644
---
a/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/topologies/PulsarCluster.java
+++
b/tests/integration-tests-topologies/src/main/java/org/apache/pulsar/tests/topologies/PulsarCluster.java
@@ -227,10 +227,6 @@ public class PulsarCluster {
return brokerContainers.values();
}
- public Collection<BrokerContainer> getBrokers() {
- return brokerContainers.values();
- }
-
public ExecResult runAdminCommandOnAnyBroker(String...commands) throws
Exception {
BrokerContainer container = getAnyBroker();
String[] cmds = new String[commands.length + 1];