You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2022/07/22 01:55:33 UTC

[dubbo] branch 3.0 updated: Fix Qos Online command typo (#10350)

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

albumenj pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/3.0 by this push:
     new eb66861117 Fix Qos Online command typo (#10350)
eb66861117 is described below

commit eb6686111789c5836c9abcbd1019ea5f180f4aef
Author: Albumen Kevin <jh...@gmail.com>
AuthorDate: Fri Jul 22 09:55:05 2022 +0800

    Fix Qos Online command typo (#10350)
---
 .../src/main/java/org/apache/dubbo/qos/command/impl/Online.java     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/impl/Online.java b/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/impl/Online.java
index 76e94be220..a099a99362 100644
--- a/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/impl/Online.java
+++ b/dubbo-plugin/dubbo-qos/src/main/java/org/apache/dubbo/qos/command/impl/Online.java
@@ -19,9 +19,9 @@ package org.apache.dubbo.qos.command.impl;
 import org.apache.dubbo.qos.command.annotation.Cmd;
 import org.apache.dubbo.rpc.model.FrameworkModel;
 
-@Cmd(name = "onlineApp", summary = "online app addresses", example = {
-        "onlineApp dubbo",
-        "onlineApp xx.xx.xxx.service"
+@Cmd(name = "online", summary = "online app addresses", example = {
+        "online dubbo",
+        "online xx.xx.xxx.service"
 })
 public class Online extends BaseOnline {
     public Online(FrameworkModel frameworkModel) {