Skip to content

Commit

Permalink
Removed console print in client
Browse files Browse the repository at this point in the history
  • Loading branch information
duhenglucky committed Feb 11, 2019
1 parent 0e4aa3a commit 806f36b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2121,7 +2121,6 @@ public void createRetryTopic(final String address, final String enodeName,

RemotingCommand response = this.remotingClient.invokeSync(address, request, timeoutMillis);
assert response != null;
System.out.println("create retry topic for consumerGrouop: " + consumerGroup);
if (ResponseCode.SUCCESS != response.getCode()) {
throw new MQClientException(response.getCode(), response.getRemark());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,6 @@ public Map<MessageQueue, Long> getConsumerStatus(String topic, String group) {

public void createRetryTopic(String topic,
String consumerGroup) {
System.out.println("****create retry topic for consumerGrouop: " + consumerGroup);
TopicRouteData topicRouteData = this.topicRouteTable.get(topic);
if (topicRouteData != null) {
if (topicRouteData.getBrokerDatas() != null) {
Expand Down

0 comments on commit 806f36b

Please sign in to comment.