You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by wa...@apache.org on 2022/07/08 20:30:12 UTC

[pulsar] branch master updated: Fix some doc url (#16477)

This is an automated email from the ASF dual-hosted git repository.

wave pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new c696a9756a3 Fix some doc url (#16477)
c696a9756a3 is described below

commit c696a9756a354ec32fa2da6bdd89efdfb9709d8d
Author: Cong Zhao <zh...@apache.org>
AuthorDate: Sat Jul 9 04:29:56 2022 +0800

    Fix some doc url (#16477)
---
 site2/docs/client-libraries-python.md | 2 +-
 site2/docs/cookbooks-deduplication.md | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/site2/docs/client-libraries-python.md b/site2/docs/client-libraries-python.md
index 7cd14e63882..4e9dbdf150d 100644
--- a/site2/docs/client-libraries-python.md
+++ b/site2/docs/client-libraries-python.md
@@ -74,7 +74,7 @@ The complete Python API reference is available at [api/python](/api/python).
 
 ## Examples
 
-You can find a variety of Python code examples for the [pulsar-client](/pulsar-client-cpp/python) library.
+You can find a variety of Python code examples for the `pulsar-client` library.
 
 ### Producer example
 
diff --git a/site2/docs/cookbooks-deduplication.md b/site2/docs/cookbooks-deduplication.md
index 21b38c48c7f..702679641d7 100644
--- a/site2/docs/cookbooks-deduplication.md
+++ b/site2/docs/cookbooks-deduplication.md
@@ -83,7 +83,7 @@ The instructions for Java, Python, and C++ clients are different.
   values={[{"label":"Java clients","value":"Java clients"},{"label":"Python clients","value":"Python clients"},{"label":"C++ clients","value":"C++ clients"}]}>
 <TabItem value="Java clients">
 
-To enable message deduplication on a [Java producer](client-libraries-java.md#producers), set the producer name using the `producerName` setter, and set the timeout to `0` using the `sendTimeout` setter. 
+To enable message deduplication on a [Java producer](client-libraries-java#producer), set the producer name using the `producerName` setter, and set the timeout to `0` using the `sendTimeout` setter. 
 
 ```java
 
@@ -105,7 +105,7 @@ Producer producer = pulsarClient.newProducer()
 </TabItem>
 <TabItem value="Python clients">
 
-To enable message deduplication on a [Python producer](client-libraries-python.md#producers), set the producer name using `producer_name`, and set the timeout to `0` using `send_timeout_millis`. 
+To enable message deduplication on a [Python producer](client-libraries-python#producer), set the producer name using `producer_name`, and set the timeout to `0` using `send_timeout_millis`. 
 
 ```python
 
@@ -122,7 +122,7 @@ producer = client.create_producer(
 </TabItem>
 <TabItem value="C++ clients">
 
-To enable message deduplication on a [C++ producer](client-libraries-cpp.md#producer), set the producer name using `producer_name`, and set the timeout to `0` using `send_timeout_millis`. 
+To enable message deduplication on a [C++ producer](client-libraries-cpp/#create-a-producer), set the producer name using `producer_name`, and set the timeout to `0` using `send_timeout_millis`. 
 
 ```cpp