This is an automated email from the ASF dual-hosted git repository.
chenzlalvin pushed a commit to branch new-official-website
in repository https://gitbox.apache.org/repos/asf/rocketmq-site.git
The following commit(s) were added to refs/heads/new-official-website by this
push:
new 38e76e2fe [ISSUE #435] Correct the en quickstart docunment
new 4f75b6222 Merge pull request #528 from buptxxb65/fix-mistake
38e76e2fe is described below
commit 38e76e2feb0064d197842352af8b4f619df46164
Author: buptxxb65 <[email protected]>
AuthorDate: Sat Mar 18 00:01:26 2023 +0800
[ISSUE #435] Correct the en quickstart docunment
---
.../version-5.0/02-quickStart/01quickstart.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md
b/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md
index 0457d40ae..60dc14a34 100644
---
a/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md
+++
b/i18n/en/docusaurus-plugin-content-docs/version-5.0/02-quickStart/01quickstart.md
@@ -125,7 +125,7 @@ We can also try to use the client sdk to send and receive
messages, you can see
public static void main(String[] args) throws ClientException,
IOException {
String endpoint = "localhost:8081";
- String topic = "YourTopic";
+ String topic = "TestTopic";
ClientServiceProvider provider =
ClientServiceProvider.loadService();
ClientConfigurationBuilder builder =
ClientConfiguration.newBuilder().setEndpoints(endpoint);
ClientConfiguration configuration = builder.build();
@@ -180,7 +180,7 @@ We can also try to use the client sdk to send and receive
messages, you can see
String tag = "*";
FilterExpression filterExpression = new FilterExpression(tag,
FilterExpressionType.TAG);
String consumerGroup = "YourConsumerGroup";
- String topic = "YourTopic";
+ String topic = "TestTopic";
PushConsumer pushConsumer = provider.newPushConsumerBuilder()
.setClientConfiguration(clientConfiguration)
.setConsumerGroup(consumerGroup)