This is an automated email from the ASF dual-hosted git repository.
AlexStocks pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git
The following commit(s) were added to refs/heads/main by this push:
new 9f9b232b chore(router): fix swapped port comments in condition README
and remove stale comment in tag client (#1131)
9f9b232b is described below
commit 9f9b232be66c3aca9596662412f3759539cf4747
Author: 超級の新人 <[email protected]>
AuthorDate: Tue Aug 11 12:06:36 2026 +0800
chore(router): fix swapped port comments in condition README and remove
stale comment in tag client (#1131)
Signed-off-by: chaojixinren <[email protected]>
---
router/condition/README.md | 4 ++--
router/condition/README_CN.md | 4 ++--
router/tag/go-client/cmd/client.go | 2 --
3 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/router/condition/README.md b/router/condition/README.md
index 0d43c023..c0542f62 100644
--- a/router/condition/README.md
+++ b/router/condition/README.md
@@ -22,8 +22,8 @@ to [install and run
Nacos](https://dubbo-next.staged.apache.org/zh-cn/overview/r
In this example, you will run two servers on ports 20000 and 20001
respectively.
```shell
-$ go run ./go-server/cmd/server.go # port 20000
-$ go run ./go-node2-server/cmd/server_node2.go # port 20001
+$ go run ./go-server/cmd/server.go # port 20001
+$ go run ./go-node2-server/cmd/server_node2.go # port 20000
```
### Run client (Consumer)
diff --git a/router/condition/README_CN.md b/router/condition/README_CN.md
index 294e8476..10e663ee 100644
--- a/router/condition/README_CN.md
+++ b/router/condition/README_CN.md
@@ -21,8 +21,8 @@
在这个示例中,你将运行两个服务端,分别在20000以及20001端口上提供服务。
```shell
-$ go run ./go-server/cmd/server.go # 20000端口
-$ go run ./go-node2-server/cmd/server_node2.go # 20001端口
+$ go run ./go-server/cmd/server.go # 20001端口
+$ go run ./go-node2-server/cmd/server_node2.go # 20000端口
```
### 运行客户端(Consumer)
diff --git a/router/tag/go-client/cmd/client.go
b/router/tag/go-client/cmd/client.go
index 11a39a3b..1299b2f4 100644
--- a/router/tag/go-client/cmd/client.go
+++ b/router/tag/go-client/cmd/client.go
@@ -75,8 +75,6 @@ func main() {
ctx := context.WithValue(context.Background(),
constant.AttachmentKey, atta)
rep, err := svc.Greet(ctx, &greet.GreetRequest{Name: name})
- // temporarily cancel checking for result, for PR # 3208
(https://github.com/apache/dubbo-go/pull/3208)
- // hasn't been merged to main branch yet, thus tag router still
not works properly.
if err != nil {
logger.Errorf("❌ invoke failed: %v", err)