Skip to content

Commit 32e0bef

Browse files
committed
[ROCKETMQ-302] TLP clean up, removes incubating related info from code base
1 parent 18fd7e4 commit 32e0bef

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
notifications:
22
email:
33
recipients:
4-
- dev@rocketmq.incubator.apache.org
4+
55
on_success: change
66
on_failure: always
77

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## How To Contribute
22

33
We are always very happy to have contributions, whether for trivial cleanups or big new features.
4-
We want to have high quality, well documented codes for each programming language, as well as the surrounding [ecosystem](https://github.com/apache/incubator-rocketmq-externals) of integration tools that people use with RocketMQ.
4+
We want to have high quality, well documented codes for each programming language, as well as the surrounding [ecosystem](https://github.com/apache/rocketmq-externals) of integration tools that people use with RocketMQ.
55

66
Nor is code the only way to contribute to the project. We strongly value documentation, integration with other project, and gladly accept improvements for these aspects.
77

DISCLAIMER

-1
This file was deleted.

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Apache RocketMQ (incubating)
1+
Apache RocketMQ
22
Copyright 2016-2017 The Apache Software Foundation
33

44
This product includes software developed at

PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ Follow this checklist to help us incorporate your contribution quickly and easil
1515
- [x] Make sure there is a [JIRA issue](https://issues.apache.org/jira/projects/ROCKETMQ/issues/) filed for the change (usually before you start working on it). Trivial changes like typos do not require a JIRA issue. Your pull request should address just this issue, without pulling in other changes - one PR resolves one issue.
1616
- [ ] Format the pull request title like `[ROCKETMQ-XXX] Fix UnknownException when host config not exist`. Each commit in the pull request should have a meaningful subject line and body.
1717
- [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why.
18-
- [ ] Write necessary unit-test to verify your logic correction, more mock a little better when cross module dependency exist. If the new feature or significant change is committed, please remember to add integration-test in [test module](https://github.com/apache/incubator-rocketmq/tree/master/test).
18+
- [ ] Write necessary unit-test to verify your logic correction, more mock a little better when cross module dependency exist. If the new feature or significant change is committed, please remember to add integration-test in [test module](https://github.com/apache/rocketmq/tree/master/test).
1919
- [ ] Run `mvn -B clean apache-rat:check findbugs:findbugs checkstyle:checkstyle` to make sure basic checks pass. Run `mvn clean install -DskipITs` to make sure unit-test pass. Run `mvn clean test-compile failsafe:integration-test` to make sure integration-test pass.
2020
- [ ] If this contribution is large, please file an [Apache Individual Contributor License Agreement](http://www.apache.org/licenses/#clas).

client/src/main/java/org/apache/rocketmq/client/consumer/DefaultMQPushConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class DefaultMQPushConsumer extends ClientConfig implements MQPushConsume
6666
* load balance. It's required and needs to be globally unique.
6767
* </p>
6868
*
69-
* See <a href="http://rocketmq.incubator.apache.org/docs/core-concept/">here</a> for further discussion.
69+
* See <a href="http://rocketmq.apache.org/docs/core-concept/">here</a> for further discussion.
7070
*/
7171
private String consumerGroup;
7272

client/src/main/java/org/apache/rocketmq/client/producer/DefaultMQProducer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public class DefaultMQProducer extends ClientConfig implements MQProducer {
6767
* For non-transactional messages, it does not matter as long as it's unique per process.
6868
* </p>
6969
*
70-
* See {@linktourl http://rocketmq.incubator.apache.org/docs/core-concept/} for more discussion.
70+
* See {@linktourl http://rocketmq.apache.org/docs/core-concept/} for more discussion.
7171
*/
7272
private String producerGroup;
7373

dev/merge_rocketmq_pr.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@
5757
GITHUB_OAUTH_KEY = os.environ.get("GITHUB_OAUTH_KEY")
5858

5959

60-
GITHUB_BASE = "https://github.com/apache/incubator-rocketmq/pull"
61-
GITHUB_API_BASE = "https://api.github.com/repos/apache/incubator-rocketmq"
60+
GITHUB_BASE = "https://github.com/apache/rocketmq/pull"
61+
GITHUB_API_BASE = "https://api.github.com/repos/apache/rocketmq"
6262
JIRA_BASE = "https://issues.apache.org/jira/browse"
6363
JIRA_API_BASE = "https://issues.apache.org/jira"
6464
# Prefix added to temporary branches

distribution/NOTICE-BIN

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Apache RocketMQ (incubating)
1+
Apache RocketMQ
22
Copyright 2016-2017 The Apache Software Foundation
33

44
This product includes software developed at

0 commit comments

Comments
 (0)